Credential.ProviderName Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the name of the provider.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

[CLSCompliantAttribute(false)]
[SfcReferenceAttribute(typeof(CryptographicProvider), "Server[@Name = '{0}']/CryptographicProvider[@Name = '{1}']", 
    new string[] { ... })]
[SfcPropertyAttribute(SfcPropertyFlags.Standalone, "string.empty")]
public string ProviderName { get; set; }
public:
[CLSCompliantAttribute(false)]
[SfcReferenceAttribute((CryptographicProvider^::typeid), "Server[@Name = '{0}']/CryptographicProvider[@Name = '{1}']", 
    new array<String^>^ { ... })]
[SfcPropertyAttribute(SfcPropertyFlags::Standalone, "string.empty")]
property String^ ProviderName {
    String^ get();
    void set(String^ value);
}
[<CLSCompliantAttribute(false)>]
[<SfcReferenceAttribute(typeof(CryptographicProvider), "Server[@Name = '{0}']/CryptographicProvider[@Name = '{1}']",
    [| ... |])>]
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone, "string.empty")>]
member ProviderName : string with get, set
<CLSCompliantAttribute(False)>
<SfcReferenceAttribute(GetType(CryptographicProvider), "Server[@Name = '{0}']/CryptographicProvider[@Name = '{1}']",
    New String() { ... })>
<SfcPropertyAttribute(SfcPropertyFlags.Standalone, "string.empty")>
Public Property ProviderName As String

Property Value

Type: System.String

A String value that specifies the name of the provider.

Examples

Legacy Code Example

Setting Properties

See Also

Credential Class
Microsoft.SqlServer.Management.Smo Namespace
CREATE CREDENTIAL (Transact-SQL)
Credentials (Database Engine)

Return to top