ClientCredentials.SupportInteractive Property

Definition

Gets or sets a value that indicates whether the system is allowed to interactively prompt the user for credentials when necessary. For example, setting it to false might be desired in middle-tier scenarios.

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

Property Value

true if the credential supports interactive mode; otherwise, false. The default is true.

Examples

The following code shows how to set this property.

public void snippet27(CalculatorClient client)
{
    client.ClientCredentials.SupportInteractive = false;
}

Remarks

This property controls whether a user interface is allowed to pop up during credential provisioning. The most common case where this currently happens is with CardSpace.

Applies to