IClientChannel.AllowInitializationUI Property

Definition

Gets or sets a value indicating whether DisplayInitializationUI() attempts to call the IInteractiveChannelInitializer objects in the InteractiveChannelInitializers property or throws if that collection is not empty.

public:
 property bool AllowInitializationUI { bool get(); void set(bool value); };
public bool AllowInitializationUI { get; set; }
member this.AllowInitializationUI : bool with get, set
Public Property AllowInitializationUI As Boolean

Property Value

true if Windows Communication Foundation (WCF) is permitted to invoke interactive channel initializers; otherwise, false.

Remarks

Set this to false if you want to throw an exception rather than display an initialization dialog. This is useful in a middle-tier scenario in which you want to guarantee that no dialog appears even if the application is configured to display one. For details, see Accessing Services Using a WCF Client and System.ServiceModel.Dispatcher.IInteractiveChannelInitializer.

Applies to