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

DirSyncRequestControl クラス

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

DirSyncRequestControl クラスは、以前の状態以降変更になったオブジェクトディレクトリアプリケーション検索できるようにするディレクトリ コントロールです。

名前空間: System.DirectoryServices.Protocols
アセンブリ: System.DirectoryServices.Protocols (system.directoryservices.protocols.dll 内)
構文構文

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

DirSyncRequestControl コンストラクタ ()

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

DirSyncRequestControl コンストラクタは、DirSyncRequestControl クラスインスタンス作成します

名前空間: System.DirectoryServices.Protocols
アセンブリ: System.DirectoryServices.Protocols (system.directoryservices.protocols.dll 内)
構文構文

Dim instance As New DirSyncRequestControl
public DirSyncRequestControl ()
public:
DirSyncRequestControl ()
public DirSyncRequestControl ()
public function DirSyncRequestControl ()
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DirSyncRequestControl クラス
DirSyncRequestControl メンバ
System.DirectoryServices.Protocols 名前空間

DirSyncRequestControl コンストラクタ (Byte[])

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

DirSyncRequestControl(Byte[]) コンストラクタは、指定されパラメータ使用して、DirSyncRequestControl クラスインスタンス作成します

名前空間: System.DirectoryServices.Protocols
アセンブリ: System.DirectoryServices.Protocols (system.directoryservices.protocols.dll 内)
構文構文

Dim cookie As Byte()

Dim instance As New DirSyncRequestControl(cookie)
public DirSyncRequestControl (
    byte[] cookie
)
public:
DirSyncRequestControl (
    array<unsigned char>^ cookie
)
public DirSyncRequestControl (
    byte[] cookie
)
public function DirSyncRequestControl (
    cookie : byte[]
)

パラメータ

cookie

サーバーによって使用される非透過構造体。これは、各 SearchRequest 時にディレクトリによって更新され、このコントロールで、ディレクトリからの変更インクリメント方式読み取ることができるようにします。

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

DirSyncRequestControl コンストラクタ (Byte[], DirectorySynchronizationOptions)

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

DirSyncRequestControl(Byte[],DirectorySynchronizationOptions) コンストラクタは、指定されパラメータ使用して、DirSyncRequestControl クラスインスタンス作成します

名前空間: System.DirectoryServices.Protocols
アセンブリ: System.DirectoryServices.Protocols (system.directoryservices.protocols.dll 内)
構文構文

Public Sub New ( _
    cookie As Byte(), _
    option As DirectorySynchronizationOptions
 _
)
Dim cookie As Byte()
Dim option As DirectorySynchronizationOptions

Dim instance As New DirSyncRequestControl(cookie,
 option)
public DirSyncRequestControl (
    byte[] cookie,
    DirectorySynchronizationOptions option
)
public:
DirSyncRequestControl (
    array<unsigned char>^ cookie, 
    DirectorySynchronizationOptions option
)
public DirSyncRequestControl (
    byte[] cookie, 
    DirectorySynchronizationOptions option
)
public function DirSyncRequestControl (
    cookie : byte[], 
    option : DirectorySynchronizationOptions
)

パラメータ

cookie

サーバーによって使用される非透過構造体。これは、各 SearchRequest 時にディレクトリによって更新され、このコントロールで、ディレクトリからの変更インクリメント方式読み取ることができるようにします。

option

検索動作指定します。このパラメータには、0 または DirectorySynchronizationOptions の値の 1 つ上の組み合わせ指定できます

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

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

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

DirSyncRequestControl(Byte[],DirectorySynchronizationOptions,Int32) コンストラクタは、指定されパラメータ使用して、DirSyncRequestControl クラスインスタンス作成します

名前空間: System.DirectoryServices.Protocols
アセンブリ: System.DirectoryServices.Protocols (system.directoryservices.protocols.dll 内)
構文構文

Public Sub New ( _
    cookie As Byte(), _
    option As DirectorySynchronizationOptions,
 _
    attributeCount As Integer _
)
Dim cookie As Byte()
Dim option As DirectorySynchronizationOptions
Dim attributeCount As Integer

Dim instance As New DirSyncRequestControl(cookie,
 option, attributeCount)
public DirSyncRequestControl (
    byte[] cookie,
    DirectorySynchronizationOptions option,
    int attributeCount
)
public:
DirSyncRequestControl (
    array<unsigned char>^ cookie, 
    DirectorySynchronizationOptions option, 
    int attributeCount
)
public DirSyncRequestControl (
    byte[] cookie, 
    DirectorySynchronizationOptions option, 
    int attributeCount
)
public function DirSyncRequestControl (
    cookie : byte[], 
    option : DirectorySynchronizationOptions, 
    attributeCount : int
)

パラメータ

cookie

サーバーによって使用される非透過構造体。これは、各 SearchRequest 時にディレクトリによって更新され、このコントロールで、ディレクトリからの変更インクリメント方式読み取ることができるようにします。

option

検索動作指定します。このパラメータには、0 または DirectorySynchronizationOptions の値の 1 つ上の組み合わせ指定できます

attributeCount

返す属性最大数。既定値1048576 です。

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

DirSyncRequestControl コンストラクタ

DirSyncRequestControl コンストラクタは、DirSyncRequestControl クラスインスタンス作成します
オーバーロードの一覧オーバーロードの一覧

名前 説明
DirSyncRequestControl () DirSyncRequestControl コンストラクタは、DirSyncRequestControl クラスインスタンス作成します
DirSyncRequestControl (Byte[]) DirSyncRequestControl(Byte[]) コンストラクタは、指定されパラメータ使用してDirSyncRequestControl クラスインスタンス作成します
DirSyncRequestControl (Byte[], DirectorySynchronizationOptions) DirSyncRequestControl(Byte[],DirectorySynchronizationOptions) コンストラクタは、指定されパラメータ使用してDirSyncRequestControl クラスインスタンス作成します
DirSyncRequestControl (Byte[], DirectorySynchronizationOptions, Int32) DirSyncRequestControl(Byte[],DirectorySynchronizationOptions,Int32) コンストラクタは、指定されパラメータ使用してDirSyncRequestControl クラスインスタンス作成します
参照参照

関連項目

DirSyncRequestControl クラス
DirSyncRequestControl メンバ
System.DirectoryServices.Protocols 名前空間

DirSyncRequestControl プロパティ


DirSyncRequestControl メソッド


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

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DirSyncRequestControl クラス
System.DirectoryServices.Protocols 名前空間

DirSyncRequestControl メンバ

DirSyncRequestControl クラスは、以前の状態以降変更になったオブジェクトディレクトリアプリケーション検索できるようにするディレクトリ コントロールです。

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


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド DirSyncRequestControl オーバーロードされます。 DirSyncRequestControl コンストラクタは、DirSyncRequestControl クラスインスタンス作成します
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DirSyncRequestControl クラス
System.DirectoryServices.Protocols 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からDirSyncRequestControlを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDirSyncRequestControlを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDirSyncRequestControl を検索

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

辞書ショートカット

すべての辞書の索引

「DirSyncRequestControl」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS