IClientChannel.DisplayInitializationUI Method

Definition

A call to a user interface to obtain credential information.

public:
 void DisplayInitializationUI();
public void DisplayInitializationUI ();
abstract member DisplayInitializationUI : unit -> unit
Public Sub DisplayInitializationUI ()

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.

For details, see Accessing Services Using a WCF Client and System.ServiceModel.Dispatcher.IInteractiveChannelInitializer.

Applies to