NamedDomainKey<T> Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
NamedDomainKey<T>() |
Default constructor for a general SFC named domain key. The caller must remember to set the Root property post-construction. |
NamedDomainKey<T>(ISfcDomain) |
Construct a general SFC named domain key from a domain root instance using its domain instance name. |
NamedDomainKey<T>(ISfcDomain, IDictionary<String,Object>) |
Construct a general SFC named domain key from a domain root instance using the given field dictionary. |
NamedDomainKey<T>(ISfcDomain, String) |
Construct a general SFC named domain key from a domain root instance using the given name. |
NamedDomainKey<T>()
Default constructor for a general SFC named domain key. The caller must remember to set the Root property post-construction.
public NamedDomainKey ();
Public Sub New ()
Applies to
NamedDomainKey<T>(ISfcDomain)
Construct a general SFC named domain key from a domain root instance using its domain instance name.
public NamedDomainKey (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain domain);
new Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)> : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain -> Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)>
Public Sub New (domain As ISfcDomain)
Parameters
- domain
- ISfcDomain
The domain instance.
Applies to
NamedDomainKey<T>(ISfcDomain, IDictionary<String,Object>)
Construct a general SFC named domain key from a domain root instance using the given field dictionary.
public NamedDomainKey (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain domain, System.Collections.Generic.IDictionary<string,object> fields);
new Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)> : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain * System.Collections.Generic.IDictionary<string, obj> -> Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)>
Public Sub New (domain As ISfcDomain, fields As IDictionary(Of String, Object))
Parameters
- domain
- ISfcDomain
The domain instance.
- fields
- IDictionary<String,Object>
The dictionary of field value pairs.
Applies to
NamedDomainKey<T>(ISfcDomain, String)
Construct a general SFC named domain key from a domain root instance using the given name.
public NamedDomainKey (Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain domain, string name);
new Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)> : Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain * string -> Microsoft.SqlServer.Management.Sdk.Sfc.NamedDomainKey<'T (requires 'T :> Microsoft.SqlServer.Management.Sdk.Sfc.ISfcDomain)>
Public Sub New (domain As ISfcDomain, name As String)
Parameters
- domain
- ISfcDomain
The domain instance.
- name
- String
The name string.