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

VlvRequestControl クラス

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

VlvRequestControl クラスは、サーバーから仮想一覧表示 (VLV: Virtual List View) のサポート要求するために使用されます。

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

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

VlvRequestControl コンストラクタ ()


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

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

VlvRequestControl(Int32,Int32,Byte[]) コンストラクタは、指定したエントリ数と対象エントリを使用して、VlvRequestControl クラスインスタンス作成します

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

Public Sub New ( _
    beforeCount As Integer, _
    afterCount As Integer, _
    target As Byte() _
)
Dim beforeCount As Integer
Dim afterCount As Integer
Dim target As Byte()

Dim instance As New VlvRequestControl(beforeCount,
 afterCount, target)
public VlvRequestControl (
    int beforeCount,
    int afterCount,
    byte[] target
)
public:
VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    array<unsigned char>^ target
)
public VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    byte[] target
)
public function VlvRequestControl (
    beforeCount : int, 
    afterCount : int, 
    target : byte[]
)

パラメータ

beforeCount

サーバーから結果リスト返すようにクライアント要求する対象エントリの前のエントリ数。

afterCount

サーバーから結果リスト返すようにクライアント要求する対象エントリの後のエントリ数。

target

検索対象のエントリ。

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

VlvRequestControl コンストラクタ (Int32, Int32, String)

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

VlvRequestControl(Int32,Int32,String) コンストラクタは、指定したエントリ数と対象エントリを使用して、VlvRequestControl クラスインスタンス作成します

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

Public Sub New ( _
    beforeCount As Integer, _
    afterCount As Integer, _
    target As String _
)
Dim beforeCount As Integer
Dim afterCount As Integer
Dim target As String

Dim instance As New VlvRequestControl(beforeCount,
 afterCount, target)
public VlvRequestControl (
    int beforeCount,
    int afterCount,
    string target
)
public:
VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    String^ target
)
public VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    String target
)
public function VlvRequestControl (
    beforeCount : int, 
    afterCount : int, 
    target : String
)

パラメータ

beforeCount

サーバーから結果リスト返すようにクライアント要求する対象エントリの前のエントリ数。

afterCount

サーバーから結果リスト返すようにクライアント要求する対象エントリの後のエントリ数。

target

検索対象のエントリ。

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

VlvRequestControl コンストラクタ

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

名前 説明
VlvRequestControl () VlvRequestControl コンストラクタは、VlvRequestControl クラスインスタンス作成します
VlvRequestControl (Int32, Int32, Byte[]) VlvRequestControl(Int32,Int32,Byte[]) コンストラクタは、指定したエントリ数と対象エントリを使用してVlvRequestControl クラスインスタンス作成します
VlvRequestControl (Int32, Int32, Int32) VlvRequestControl(Int32,Int32,Int32) コンストラクタは、指定されたエントリ数とオフセット使用してVlvRequestControl クラスインスタンス作成します
VlvRequestControl (Int32, Int32, String) VlvRequestControl(Int32,Int32,String) コンストラクタは、指定したエントリ数と対象エントリを使用してVlvRequestControl クラスインスタンス作成します
参照参照

関連項目

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

VlvRequestControl コンストラクタ (Int32, Int32, Int32)

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

VlvRequestControl(Int32,Int32,Int32) コンストラクタは、指定されたエントリ数とオフセット使用して、VlvRequestControl クラスインスタンス作成します

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

Public Sub New ( _
    beforeCount As Integer, _
    afterCount As Integer, _
    offset As Integer _
)
Dim beforeCount As Integer
Dim afterCount As Integer
Dim offset As Integer

Dim instance As New VlvRequestControl(beforeCount,
 afterCount, offset)
public VlvRequestControl (
    int beforeCount,
    int afterCount,
    int offset
)
public:
VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    int offset
)
public VlvRequestControl (
    int beforeCount, 
    int afterCount, 
    int offset
)
public function VlvRequestControl (
    beforeCount : int, 
    afterCount : int, 
    offset : int
)

パラメータ

beforeCount

サーバーから結果リスト送り返すようにクライアント要求する対象エントリの前のエントリ数。

afterCount

サーバーから結果リスト送り返すようにクライアント要求する対象エントリの後のエントリ数。

offset

オフセット値とコンテンツ数との比率

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

VlvRequestControl プロパティ


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

  名前 説明
パブリック プロパティ AfterCount AfterCount プロパティは、結果リスト返す対象エントリの後のエントリ数を指定します
パブリック プロパティ BeforeCount BeforeCount プロパティは、結果リスト返す対象エントリの前のエントリ数を指定します
パブリック プロパティ ContextId ContextId プロパティは、この検索操作識別するためにサーバーによって割り当てられるコンテキスト ID格納します
パブリック プロパティ EstimateCount EstimateCount プロパティは、リストコンテンツ数を格納します
パブリック プロパティ IsCritical  IsCritical プロパティは、コントロールクリティカルかどうか指定します。 ( DirectoryControl から継承されます。)
パブリック プロパティ Offset Offset プロパティは、対象エントリのオフセット値を格納します
パブリック プロパティ ServerSide  ServerSide プロパティは、これがサーバーコントロールかどうかを指定します。 ( DirectoryControl から継承されます。)
パブリック プロパティ Target Target プロパティは、検索対象のエントリを格納します
パブリック プロパティ Type  Type プロパティには、コントロールオブジェクト ID (OID) が格納されます。 ( DirectoryControl から継承されます。)
参照参照

関連項目

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

VlvRequestControl メソッド


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

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

関連項目

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

VlvRequestControl メンバ

VlvRequestControl クラスは、サーバーから仮想一覧表示 (VLV: Virtual List View) のサポート要求するために使用されます。

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


パブリック コンストラクタパブリック コンストラクタ
  名前 説明
パブリック メソッド VlvRequestControl オーバーロードされます。 VlvRequestControl コンストラクタは、VlvRequestControl クラスインスタンス作成します
パブリック プロパティパブリック プロパティ
  名前 説明
パブリック プロパティ AfterCount AfterCount プロパティは、結果リスト返す対象エントリの後のエントリ数を指定します
パブリック プロパティ BeforeCount BeforeCount プロパティは、結果リスト返す対象エントリの前のエントリ数を指定します
パブリック プロパティ ContextId ContextId プロパティは、この検索操作識別するためにサーバーによって割り当てられるコンテキスト ID格納します
パブリック プロパティ EstimateCount EstimateCount プロパティは、リストコンテンツ数を格納します
パブリック プロパティ IsCritical  IsCritical プロパティは、コントロールクリティカルかどうか指定します。(DirectoryControl から継承されます。)
パブリック プロパティ Offset Offset プロパティは、対象エントリのオフセット値を格納します
パブリック プロパティ ServerSide  ServerSide プロパティは、これがサーバーコントロールかどうかを指定します。(DirectoryControl から継承されます。)
パブリック プロパティ Target Target プロパティは、検索対象のエントリを格納します
パブリック プロパティ Type  Type プロパティには、コントロールオブジェクト ID (OID) が格納されます。(DirectoryControl から継承されます。)
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

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


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

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

辞書ショートカット

すべての辞書の索引

「VlvRequestControl」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS