Share via


ProviderConnector<T>.Connected Property

 

Indicates whether the ProviderConnector<T> object is connected.

Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)

Syntax

public bool Connected { get; private set; }
public:
property bool Connected {
    bool get();
    private: void set(bool value);
}
Public Property Connected As Boolean
    Get
    Private Set
End Property

Property Value

Type: System.Boolean

true if the ProviderConnector<T> object is connected; otherwise, false.

Remarks

A connection may be closed, but have this property set to true, however it will be correctly set to false after the first failed call.

See Also

ProviderConnector<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace

Return to top