Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns a ProviderConnector<T> object with the specified callback object for the default provider.
Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)
Syntax
public static ProviderConnector<T> GetConnector<T>(
    object callback
)
where T : class
public:
generic<typename T>
where T : ref class
static ProviderConnector<T>^ GetConnector(
    Object^ callback
)
Public Shared Function GetConnector(Of T As Class) (
    callback As Object
) As ProviderConnector(Of T)
Parameters
- callback 
 Type: System.Object- The callback object that is associated with the ProviderConnector<T> object. 
Return Value
Type: Microsoft.WindowsServerSolutions.Common.ProviderFramework.ProviderConnector<T>
An instance of ProviderConnector<T> that has not started a connection.
Type Parameters
- T
 Represents the contract type.
See Also
GetConnector Overload
ConnectorFactory Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top