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.10.0.1777 (2.10.0.1777)
Syntaxpublic 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: System.String
The DNS name of the Coordinator you intend to connect. - coordinatorPort
- Type: System.Int32
The port number of the Coordinator you intend to connect. - useSsl (Optional)
- Type: System.Boolean
If set to true, use SSL to communicate with the Coordinator. - allowSelfSignedCertificates (Optional)
- Type: System.Boolean
If set to true, allow self-signed certificates. - provideClientCertificate (Optional)
- Type: System.Boolean
If set to true, provide a certificate for mutual SSL authentication to the Coordinator. - clientCertificateName (Optional)
- Type: System.String
The name of the certificate in the local Windows certificate store to provide for authentication. - verifyCoordinatorThumbprint (Optional)
- Type: System.Boolean
if set to true [verify coordinator thumbprint]. - coordinatorThumbprint (Optional)
- Type: System.String
The Coordinator thumbprint. - clientCertificateThumbprint (Optional)
- Type: System.String
The thumbprint of the certificate in the local Windows certificate store to provide for authentication.
See Also