ClusterJobScheduler Constructor (String, Int32, Boolean, Boolean, Boolean, String, Boolean, String, String) |
Initializes a new instance of the
ClusterJobScheduler class with the specified Coordinator host name, port, and security options.
Namespace:
AGI.Parallel.Client
Assembly:
AGI.Parallel.Client (in AGI.Parallel.Client.dll) Version: 2.9.0.1601 (2.9.0.1601)
Syntax public ClusterJobScheduler(
string coordinatorMachineName,
int coordinatorPort,
bool useSsl = false,
bool allowSelfSignedCertificates = false,
bool provideClientCertificate = false,
string clientCertificateName = null,
bool verifyCoordinatorThumbprint = false,
string coordinatorThumbprint = null,
string clientCertificateThumbprint = null
)
Public Sub New (
coordinatorMachineName As String,
coordinatorPort As Integer,
Optional useSsl As Boolean = false,
Optional allowSelfSignedCertificates As Boolean = false,
Optional provideClientCertificate As Boolean = false,
Optional clientCertificateName As String = Nothing,
Optional verifyCoordinatorThumbprint As Boolean = false,
Optional coordinatorThumbprint As String = Nothing,
Optional clientCertificateThumbprint As String = Nothing
)
Parameters
- coordinatorMachineName
- Type: SystemString
The DNS name of the Coordinator you intend to connect. - coordinatorPort
- Type: SystemInt32
The port number of the Coordinator you intend to connect. - useSsl (Optional)
- Type: SystemBoolean
If set to true, use SSL to communicate with the Coordinator. - allowSelfSignedCertificates (Optional)
- Type: SystemBoolean
If set to true, allow self-signed certificates. - provideClientCertificate (Optional)
- Type: SystemBoolean
If set to true, provide a certificate for mutual SSL authentication to the Coordinator. - clientCertificateName (Optional)
- Type: SystemString
The name of the certificate in the local Windows certificate store to provide for authentication. - verifyCoordinatorThumbprint (Optional)
- Type: SystemBoolean
if set to true [verify coordinator thumbprint]. - coordinatorThumbprint (Optional)
- Type: SystemString
The Coordinator thumbprint. - clientCertificateThumbprint (Optional)
- Type: SystemString
The thumbprint of the certificate in the local Windows certificate store to provide for authentication.
See Also