ConnectorFactory Class
Represents a factory that is used to create a ProviderConnector<T>.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly: ProviderFramework (in ProviderFramework.dll)
Inheritance Hierarchy
System.Object
Microsoft.WindowsServerSolutions.Common.ProviderFramework.ConnectorFactory
Syntax
public static class ConnectorFactory
public ref class ConnectorFactory abstract sealed
Public NotInheritable Class ConnectorFactory
Methods
Name | Description | |
---|---|---|
GetConnector<T>() | Returns a ProviderConnector<T> object for the default provider. |
|
GetConnector<T>(Object) | Returns a ProviderConnector<T> object with the specified callback object for the default provider. |
|
GetConnector<T>(String) | Returns a ProviderConnector<T> object for a provider with the specified identifier. |
|
GetConnector<T>(String, Object) | Returns a ProviderConnector<T> object with the specified callback for the provider with the specified identifier. |
|
GetConnectorCollection<T>() | Returns a collection of connectors for a contract on the local computer. |
|
GetServerConnector<T>() | Returns a ProviderConnector<T> object for the default provider. |
|
GetServerConnector<T>(Object) | Returns a ProviderConnector<T> object with the specified callback object for the default provider. |
|
GetServerConnector<T>(String) | Returns a ProviderConnector<T> object for the provider with the specified identifier. |
|
GetServerConnector<T>(String, Object) | Returns a ProviderConnector<T> object with the specified callback object for the provider with the specified identifier. |
|
GetServerConnector<T>(String, Object, NetworkCredential) | Returns a ProviderConnector<T> object with the specified callback object and credentials for the provider with the specified identifier. |
|
GetServerConnectorCollection<T>() | Returns a collection of connectors for a contract on the server. |
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace
Return to top