LdapConnection.BeginSendRequest メソッド

定義

サーバーにデータを非同期的に送信します。

オーバーロード

BeginSendRequest(DirectoryRequest, PartialResultProcessing, AsyncCallback, Object)

サーバーにデータを非同期的に送信します。

BeginSendRequest(DirectoryRequest, TimeSpan, PartialResultProcessing, AsyncCallback, Object)

サーバーにデータを非同期的に送信します。

BeginSendRequest(DirectoryRequest, PartialResultProcessing, AsyncCallback, Object)

ソース:
LdapConnection.cs
ソース:
LdapConnection.cs
ソース:
LdapConnection.cs

サーバーにデータを非同期的に送信します。

public:
 IAsyncResult ^ BeginSendRequest(System::DirectoryServices::Protocols::DirectoryRequest ^ request, System::DirectoryServices::Protocols::PartialResultProcessing partialMode, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginSendRequest (System.DirectoryServices.Protocols.DirectoryRequest request, System.DirectoryServices.Protocols.PartialResultProcessing partialMode, AsyncCallback callback, object state);
member this.BeginSendRequest : System.DirectoryServices.Protocols.DirectoryRequest * System.DirectoryServices.Protocols.PartialResultProcessing * AsyncCallback * obj -> IAsyncResult
Public Function BeginSendRequest (request As DirectoryRequest, partialMode As PartialResultProcessing, callback As AsyncCallback, state As Object) As IAsyncResult

パラメーター

request
DirectoryRequest

DirectoryRequest オブジェクト。

partialMode
PartialResultProcessing

返される部分的な結果のレベルを指定する PartialResultProcessing 列挙体の値。

callback
AsyncCallback

AsyncCallback 関数。

state
Object

この要求の状態データを格納している Object

戻り値

非同期の送信を参照する IAsyncResult オブジェクト。

例外

オブジェクト ハンドルが有効ではありません。

requestnull (Visual Basic の場合は Nothing) です。

部分的な結果はサポートされていません。

partialModeReturnPartialResultsAndNotifyCallback と等しい場合、コールバック関数を指定する必要があります。

適用対象

BeginSendRequest(DirectoryRequest, TimeSpan, PartialResultProcessing, AsyncCallback, Object)

ソース:
LdapConnection.cs
ソース:
LdapConnection.cs
ソース:
LdapConnection.cs

サーバーにデータを非同期的に送信します。

public:
 IAsyncResult ^ BeginSendRequest(System::DirectoryServices::Protocols::DirectoryRequest ^ request, TimeSpan requestTimeout, System::DirectoryServices::Protocols::PartialResultProcessing partialMode, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginSendRequest (System.DirectoryServices.Protocols.DirectoryRequest request, TimeSpan requestTimeout, System.DirectoryServices.Protocols.PartialResultProcessing partialMode, AsyncCallback callback, object state);
member this.BeginSendRequest : System.DirectoryServices.Protocols.DirectoryRequest * TimeSpan * System.DirectoryServices.Protocols.PartialResultProcessing * AsyncCallback * obj -> IAsyncResult
Public Function BeginSendRequest (request As DirectoryRequest, requestTimeout As TimeSpan, partialMode As PartialResultProcessing, callback As AsyncCallback, state As Object) As IAsyncResult

パラメーター

request
DirectoryRequest

DirectoryRequest オブジェクト。

requestTimeout
TimeSpan

要求がタイムアウトするまでの時間 (秒)。

partialMode
PartialResultProcessing

返される部分的な結果のレベルを指定する PartialResultProcessing 列挙体の値。

callback
AsyncCallback

AsyncCallback 関数。

state
Object

この要求の状態データを格納している Object

戻り値

非同期の送信を参照する IAsyncResult オブジェクト。

例外

オブジェクト ハンドルが有効ではありません。

request が null (Visual Basic の場合は Nothing) です。

部分的な結果はサポートされていません。

partialModeReturnPartialResultsAndNotifyCallback と等しい場合、コールバック関数を指定する必要があります。

適用対象