CredentialCommand 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
CredentialCommand(PasswordCredential) |
Initializes a new instance of the CredentialCommand class with a PasswordCredential object. |
CredentialCommand(PasswordCredential, CredentialCommandCredentialDeletedHandler) |
Initializes a new instance of the CredentialCommand class with a PasswordCredential object and a CredentialCommandCredentialDeletedHandler delegate. |
CredentialCommand(PasswordCredential)
Initializes a new instance of the CredentialCommand class with a PasswordCredential object.
public:
CredentialCommand(PasswordCredential ^ passwordCredential);
CredentialCommand(PasswordCredential const& passwordCredential);
public CredentialCommand(PasswordCredential passwordCredential);
function CredentialCommand(passwordCredential)
Public Sub New (passwordCredential As PasswordCredential)
Parameters
- passwordCredential
- PasswordCredential
The password credential.
See also
Applies to
CredentialCommand(PasswordCredential, CredentialCommandCredentialDeletedHandler)
Initializes a new instance of the CredentialCommand class with a PasswordCredential object and a CredentialCommandCredentialDeletedHandler delegate.
public:
CredentialCommand(PasswordCredential ^ passwordCredential, CredentialCommandCredentialDeletedHandler ^ deleted);
CredentialCommand(PasswordCredential const& passwordCredential, CredentialCommandCredentialDeletedHandler const& deleted);
public CredentialCommand(PasswordCredential passwordCredential, CredentialCommandCredentialDeletedHandler deleted);
function CredentialCommand(passwordCredential, deleted)
Public Sub New (passwordCredential As PasswordCredential, deleted As CredentialCommandCredentialDeletedHandler)
Parameters
- passwordCredential
- PasswordCredential
The password credential.
The delegate that handles credential deletion.