Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ClientCredentials::SupportInteractive Property

 

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.

Namespace:   System.ServiceModel.Description
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property bool SupportInteractive {
	bool get();
	void set(bool value);
}

Property Value

Type: System::Boolean

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

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.

The following code shows how to set this property.

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

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft