IClientChannel.BeginDisplayInitializationUI(AsyncCallback, Object) Method

Definition

An asynchronous call to begin using a user interface to obtain credential information.

public:
 IAsyncResult ^ BeginDisplayInitializationUI(AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginDisplayInitializationUI (AsyncCallback callback, object state);
abstract member BeginDisplayInitializationUI : AsyncCallback * obj -> IAsyncResult
Public Function BeginDisplayInitializationUI (callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

callback
AsyncCallback

The method that is called when this method completes.

state
Object

Information about the state of the channel.

Returns

The IAsyncResult to use to call back when processing has completed.

Remarks

Call this method to cause any interactive channel initialization (for example, CardSpace card selection) to occur. This happens automatically if the channel is used without explicitly calling ICommunicationObject.Open, so for many applications this call is optional.

However, if the user takes a long time in the selection process, the operation that automatically called this may time out. To prevent this, call DisplayInitializationUI or BeginDisplayInitializationUI and EndDisplayInitializationUI explicitly. These operations do not time out and allow you to control exactly where in your application this dialog comes up.

This method only brings up a dialog if the application is configured to do so. When the application is not configured to use CardSpace or another interactive channel initializer, this call returns without any action.

If you call this method explicitly, you must also explicitly open the channel before using it.

Applies to