Método Credential.Create (String, String)
Creates a credential on the instance of SQL Server as defined by the Credential object.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
Public Sub Create ( _
identity As String, _
secret As String _
)
'Uso
Dim instance As Credential
Dim identity As String
Dim secret As String
instance.Create(identity, secret)
public void Create(
string identity,
string secret
)
public:
void Create(
String^ identity,
String^ secret
)
member Create :
identity:string *
secret:string -> unit
public function Create(
identity : String,
secret : String
)
Parâmetros
- identity
Tipo: System.String
A String value that specifies the name of the credential.
- secret
Tipo: System.String
A String value that specifies the password for the credential.
Exemplos
Consulte também
Referência
Namespace Microsoft.SqlServer.Management.Smo