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.

C#
public bool SupportInteractive { get; set; }

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.

C#
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

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1