ConnectorFrameworkProxy Constructors

Definition

Initializes a new instance of the ConnectorFrameworkProxy class.

Overloads

ConnectorFrameworkProxy(String)

Creates a new proxy to the service described by the given endpoint configuration name.

ConnectorFrameworkProxy(Uri)

Creates a new proxy to the service described by the given endpoint configuration name.

ConnectorFrameworkProxy(String, String)

Creates a new proxy to the service described by the given endpoint configuration name.

ConnectorFrameworkProxy(Uri, EndpointIdentity)

Creates a new proxy to the service described by the given endpoint configuration name.

Remarks

Used to communicate with a specific Operation Manager. A client that uses an object across any kind of remoting boundary is actually using a transparent proxy for the object. The transparent proxy provides the illusion that the actual object resides in the client's space. It achieves this by forwarding calls made on it to the real object by using the remoting infrastructure.

Warning

Instances of this class can be run only on machines running Microsoft Windows.

ConnectorFrameworkProxy(String)

Creates a new proxy to the service described by the given endpoint configuration name.

public:
 ConnectorFrameworkProxy(System::String ^ endpointConfigurationName);
public ConnectorFrameworkProxy (string endpointConfigurationName);
new Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy : string -> Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy
Public Sub New (endpointConfigurationName As String)

Parameters

endpointConfigurationName
String

The endpoint configuration name (found in the app's config file).

Remarks

The current culture settings (CultureInfo.CurrentCulture) of the local computer are used.

Warning

Instances of this class can be run only on machines running Microsoft Windows.

Applies to

ConnectorFrameworkProxy(Uri)

Creates a new proxy to the service described by the given endpoint configuration name.

public:
 ConnectorFrameworkProxy(Uri ^ endpointAddress);
public ConnectorFrameworkProxy (Uri endpointAddress);
new Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy : Uri -> Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy
Public Sub New (endpointAddress As Uri)

Parameters

endpointAddress
Uri

The endpoint address

Examples

See ConnectorFrameworkProxy for an example of this constructor.

Remarks

The Uri format is similar to the following:

http://<Root Management Server name>:51905/ConnectorFramework

Warning

Instances of this class can be run only on machines running Microsoft Windows.

Applies to

ConnectorFrameworkProxy(String, String)

Creates a new proxy to the service described by the given endpoint configuration name.

public:
 ConnectorFrameworkProxy(System::String ^ endpointConfigurationName, System::String ^ threeLetterWindowsLanguageName);
public ConnectorFrameworkProxy (string endpointConfigurationName, string threeLetterWindowsLanguageName);
new Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy : string * string -> Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy
Public Sub New (endpointConfigurationName As String, threeLetterWindowsLanguageName As String)

Parameters

endpointConfigurationName
String

The endpoint configuration name (found in the app's config file).

threeLetterWindowsLanguageName
String

The language code to use for localized data.

Remarks

The ConnectorFrameworkProxy instance is initialized to the specified endpointConfigurationName.

Warning

Instances of this class can be run only on machines running Microsoft Windows.

Applies to

ConnectorFrameworkProxy(Uri, EndpointIdentity)

Creates a new proxy to the service described by the given endpoint configuration name.

public:
 ConnectorFrameworkProxy(Uri ^ endpointAddress, System::ServiceModel::EndpointIdentity ^ identity);
public ConnectorFrameworkProxy (Uri endpointAddress, System.ServiceModel.EndpointIdentity identity);
new Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy : Uri * System.ServiceModel.EndpointIdentity -> Microsoft.EnterpriseManagement.ConnectorFramework.ConnectorFrameworkProxy
Public Sub New (endpointAddress As Uri, identity As EndpointIdentity)

Parameters

endpointAddress
Uri

The endpoint address

identity
EndpointIdentity

The identity to use.

Remarks

The Uri format is similar to the following:

http://<Root Management Server name>:51905/ConnectorFramework

Warning

Instances of this class can be run only on machines running Microsoft Windows.

Applies to