.NET API Reference for Oracle Identity Connector Framework 11.1.2
E41516-01
Creates a new instance of RemoteFrameworkConnectionInfo.

Namespace: Org.IdentityConnectors.Framework.Api
Assembly: Framework (in Framework.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
public RemoteFrameworkConnectionInfo(
	string host,
	int port,
	GuardedString key,
	bool useSSL,
	RemoteCertificateValidationCallback certificateValidationCallback,
	int timeout
)

Parameters

host
Type: System..::..String
The host to connect to
port
Type: System..::..Int32
The port to connect to
key
Type: GuardedString
useSSL
Type: System..::..Boolean
Set to true if we are to connect via SSL.
certificateValidationCallback
Type: System.Net.Security..::..RemoteCertificateValidationCallback
to use for establising the SSL connection. May be null or empty, in which case the default installed providers for the JVM will be used. Ignored if 'useSSL' is false.
timeout
Type: System..::..Int32
The timeout to use (in milliseconds). A value of 0 means infinite timeout;

See Also