[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

RawSecurityDescriptorとは? わかりやすく解説

RawSecurityDescriptor クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

セキュリティ記述子表しますセキュリティ記述子には、所有者プライマリ グループ随意アクセス制御リスト (DACL: Discretionary Access Control List)、システム アクセス制御リスト (SACL: System Access Control List) が含まれます。

名前空間: System.Security.AccessControl
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public NotInheritable Class
 RawSecurityDescriptor
    Inherits GenericSecurityDescriptor
Dim instance As RawSecurityDescriptor
public sealed class RawSecurityDescriptor :
 GenericSecurityDescriptor
public ref class RawSecurityDescriptor sealed
 : public GenericSecurityDescriptor
public final class RawSecurityDescriptor extends
 GenericSecurityDescriptor
public final class RawSecurityDescriptor extends
 GenericSecurityDescriptor
継承階層継承階層
System.Object
   System.Security.AccessControl.GenericSecurityDescriptor
    System.Security.AccessControl.RawSecurityDescriptor
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
RawSecurityDescriptor メンバ
System.Security.AccessControl 名前空間

RawSecurityDescriptor コンストラクタ (Byte[], Int32)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定したバイト値の配列から RawSecurityDescriptor クラス新しインスタンス初期化します。

名前空間: System.Security.AccessControl
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

public RawSecurityDescriptor (
    byte[] binaryForm,
    int offset
)
public:
RawSecurityDescriptor (
    array<unsigned char>^ binaryForm, 
    int offset
)
public RawSecurityDescriptor (
    byte[] binaryForm, 
    int offset
)
public function RawSecurityDescriptor (
    binaryForm : byte[], 
    offset : int
)

パラメータ

binaryForm

新しい RawSecurityDescriptor オブジェクトの作成元となるバイト値の配列

offset

コピー開始位置を示す binaryForm 配列内のオフセット

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
RawSecurityDescriptor クラス
RawSecurityDescriptor メンバ
System.Security.AccessControl 名前空間

RawSecurityDescriptor コンストラクタ

RawSecurityDescriptor クラス新しインスタンス初期化します。
オーバーロードの一覧オーバーロードの一覧

名前 説明
RawSecurityDescriptor (String) 指定した SDDL (Security Descriptor Definition Language) 文字列から RawSecurityDescriptor クラス新しインスタンス初期化します。
RawSecurityDescriptor (Byte[], Int32) 指定したバイト値の配列から RawSecurityDescriptor クラス新しインスタンス初期化します。
RawSecurityDescriptor (ControlFlags, SecurityIdentifier, SecurityIdentifier, RawAcl, RawAcl) 値を指定してRawSecurityDescriptor クラス新しインスタンス初期化します。
参照参照

関連項目

RawSecurityDescriptor クラス
RawSecurityDescriptor メンバ
System.Security.AccessControl 名前空間

RawSecurityDescriptor コンストラクタ (ControlFlags, SecurityIdentifier, SecurityIdentifier, RawAcl, RawAcl)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

値を指定してRawSecurityDescriptor クラス新しインスタンス初期化します。

名前空間: System.Security.AccessControl
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    flags As ControlFlags, _
    owner As SecurityIdentifier, _
    group As SecurityIdentifier, _
    systemAcl As RawAcl, _
    discretionaryAcl As RawAcl _
)
Dim flags As ControlFlags
Dim owner As SecurityIdentifier
Dim group As SecurityIdentifier
Dim systemAcl As RawAcl
Dim discretionaryAcl As RawAcl

Dim instance As New RawSecurityDescriptor(flags,
 owner, group, systemAcl, discretionaryAcl)
public RawSecurityDescriptor (
    ControlFlags flags,
    SecurityIdentifier owner,
    SecurityIdentifier group,
    RawAcl systemAcl,
    RawAcl discretionaryAcl
)
public:
RawSecurityDescriptor (
    ControlFlags flags, 
    SecurityIdentifier^ owner, 
    SecurityIdentifier^ group, 
    RawAcl^ systemAcl, 
    RawAcl^ discretionaryAcl
)
public RawSecurityDescriptor (
    ControlFlags flags, 
    SecurityIdentifier owner, 
    SecurityIdentifier group, 
    RawAcl systemAcl, 
    RawAcl discretionaryAcl
)
public function RawSecurityDescriptor (
    flags : ControlFlags, 
    owner : SecurityIdentifier, 
    group : SecurityIdentifier, 
    systemAcl : RawAcl, 
    discretionaryAcl : RawAcl
)

パラメータ

flags

新しい RawSecurityDescriptor オブジェクト動作を示すフラグ

owner

新しRawSecurityDescriptor オブジェクト所有者

group

新しRawSecurityDescriptor オブジェクトプライマリ グループ

systemAcl

新しRawSecurityDescriptor オブジェクトシステム アクセス制御リスト (SACL)。

discretionaryAcl

新しRawSecurityDescriptor オブジェクト随意アクセス制御リスト (DACL)。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
RawSecurityDescriptor クラス
RawSecurityDescriptor メンバ
System.Security.AccessControl 名前空間

RawSecurityDescriptor コンストラクタ (String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

指定した SDDL (Security Descriptor Definition Language) 文字列から RawSecurityDescriptor クラス新しインスタンス初期化します。

名前空間: System.Security.AccessControl
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

Public Sub New ( _
    sddlForm As String _
)
Dim sddlForm As String

Dim instance As New RawSecurityDescriptor(sddlForm)
public RawSecurityDescriptor (
    string sddlForm
)
public:
RawSecurityDescriptor (
    String^ sddlForm
)
public RawSecurityDescriptor (
    String sddlForm
)
public function RawSecurityDescriptor (
    sddlForm : String
)

パラメータ

sddlForm

新しい RawSecurityDescriptor オブジェクトの作成元の SDDL 文字列

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
RawSecurityDescriptor クラス
RawSecurityDescriptor メンバ
System.Security.AccessControl 名前空間

RawSecurityDescriptor プロパティ


パブリック プロパティパブリック プロパティ

  名前 説明
パブリック プロパティ BinaryLength  現在の GenericSecurityDescriptor オブジェクトバイナリ表現長さ (バイト単位) を取得します。GetBinaryForm メソッドACLバイナリ配列マーシャリングする前に、この長さ使用する必要があります。 ( GenericSecurityDescriptor から継承されます。)
パブリック プロパティ ControlFlags オーバーライドされます。 RawSecurityDescriptor オブジェクト動作を示す値を取得します
パブリック プロパティ DiscretionaryAcl この RawSecurityDescriptor オブジェクト随意アクセス制御リスト (DACL) を取得または設定します。DACL にはアクセス規則格納されます。
パブリック プロパティ Group オーバーライドされます。 この RawSecurityDescriptor オブジェクトプライマリ グループ取得または設定します
パブリック プロパティ Owner オーバーライドされます。 この RawSecurityDescriptor オブジェクト関連付けられているオブジェクト所有者取得または設定します
パブリック プロパティ Revision  GenericSecurityDescriptor オブジェクトリビジョン レベル取得します。 ( GenericSecurityDescriptor から継承されます。)
パブリック プロパティ SystemAcl この RawSecurityDescriptor オブジェクトシステム アクセス制御リスト (SACL) を取得または設定します。SACL には監査規則格納されます。
参照参照

関連項目

RawSecurityDescriptor クラス
System.Security.AccessControl 名前空間

RawSecurityDescriptor メソッド


パブリック メソッドパブリック メソッド

  名前 説明
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GetBinaryForm  この GenericSecurityDescriptor オブジェクト格納され情報を表すバイト値の配列返します。 ( GenericSecurityDescriptor から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetSddlForm  この GenericSecurityDescriptor オブジェクトが表すセキュリティ記述子指定したセクションの SDDL (Security Descriptor Definition Language) 形式返します。 ( GenericSecurityDescriptor から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsSddlConversionSupported  この GenericSecurityDescriptor オブジェクト関連付けられたセキュリティ記述子を SDDL (Security Descriptor Definition Language) 形式変換できるかどうかを示すブール値を返します。 ( GenericSecurityDescriptor から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド SetFlags この RawSecurityDescriptor オブジェクトの ControlFlags プロパティ指定した値に設定します
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
参照参照

関連項目

RawSecurityDescriptor クラス
System.Security.AccessControl 名前空間

RawSecurityDescriptor メンバ

セキュリティ記述子表しますセキュリティ記述子には、所有者プライマリ グループ随意アクセス制御リスト (DACL: Discretionary Access Control List)、システム アクセス制御リスト (SACL: System Access Control List) が含まれます。

RawSecurityDescriptor データ型公開されるメンバを以下の表に示します


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド RawSecurityDescriptor オーバーロードされます。 RawSecurityDescriptor クラス新しインスタンス初期化します。
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ BinaryLength  現在の GenericSecurityDescriptor オブジェクトバイナリ表現長さ (バイト単位) を取得します。GetBinaryForm メソッドACLバイナリ配列マーシャリングする前に、この長さ使用する必要があります。(GenericSecurityDescriptor から継承されます。)
パブリック プロパティ ControlFlags オーバーライドされますRawSecurityDescriptor オブジェクト動作を示す値を取得します
パブリック プロパティ DiscretionaryAcl この RawSecurityDescriptor オブジェクト随意アクセス制御リスト (DACL) を取得または設定します。DACL にはアクセス規則格納されます。
パブリック プロパティ Group オーバーライドされます。 この RawSecurityDescriptor オブジェクトプライマリ グループ取得または設定します
パブリック プロパティ Owner オーバーライドされます。 この RawSecurityDescriptor オブジェクト関連付けられているオブジェクト所有者取得または設定します
パブリック プロパティ Revision  GenericSecurityDescriptor オブジェクトリビジョン レベル取得します。(GenericSecurityDescriptor から継承されます。)
パブリック プロパティ SystemAcl この RawSecurityDescriptor オブジェクトシステム アクセス制御リスト (SACL) を取得または設定します。SACL には監査規則格納されます。
パブリック メソッドパブリック メソッド
  名前 説明
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GetBinaryForm  この GenericSecurityDescriptor オブジェクト格納され情報を表すバイト値の配列返します。 (GenericSecurityDescriptor から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetSddlForm  この GenericSecurityDescriptor オブジェクトが表すセキュリティ記述子指定したセクションの SDDL (Security Descriptor Definition Language) 形式返します。 (GenericSecurityDescriptor から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsSddlConversionSupported  この GenericSecurityDescriptor オブジェクト関連付けられたセキュリティ記述子を SDDL (Security Descriptor Definition Language) 形式変換できるかどうかを示すブール値を返します。 (GenericSecurityDescriptor から継承されます。)
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド SetFlags この RawSecurityDescriptor オブジェクトの ControlFlags プロパティ指定した値に設定します
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
参照参照

関連項目

RawSecurityDescriptor クラス
System.Security.AccessControl 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

「RawSecurityDescriptor」の関連用語

RawSecurityDescriptorのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



RawSecurityDescriptorのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS