Share via


ConnectorFactory.GetConnector<T> Method (String)

 

Returns a ProviderConnector<T> object for a provider with the specified identifier.

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

Syntax

public static ProviderConnector<T> GetConnector<T>(
    string identifier
)
where T : class
public:
generic<typename T>
where T : ref class
static ProviderConnector<T>^ GetConnector(
    String^ identifier
)
Public Shared Function GetConnector(Of T As Class) (
    identifier As String
) As ProviderConnector(Of T)

Parameters

  • identifier
    Type: System.String

    Identifier of the provider that is used.

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