Delen via


WebBasicAuthentication Constructors

Definition

Overloads

WebBasicAuthentication(DataFactoryElement<String>, DataFactoryElement<String>, DataFactorySecret)

Initializes a new instance of WebBasicAuthentication.

WebBasicAuthentication(DataFactoryElement<String>, DataFactoryElement<String>, DataFactorySecretBaseDefinition)

Initializes a new instance of WebBasicAuthentication.

WebBasicAuthentication(DataFactoryElement<String>, DataFactoryElement<String>, DataFactorySecret)

Source:
WebBasicAuthentication.cs

Initializes a new instance of WebBasicAuthentication.

public WebBasicAuthentication (Azure.Core.Expressions.DataFactory.DataFactoryElement<string> uri, Azure.Core.Expressions.DataFactory.DataFactoryElement<string> username, Azure.Core.Expressions.DataFactory.DataFactorySecret password);
new Azure.ResourceManager.DataFactory.Models.WebBasicAuthentication : Azure.Core.Expressions.DataFactory.DataFactoryElement<string> * Azure.Core.Expressions.DataFactory.DataFactoryElement<string> * Azure.Core.Expressions.DataFactory.DataFactorySecret -> Azure.ResourceManager.DataFactory.Models.WebBasicAuthentication
Public Sub New (uri As DataFactoryElement(Of String), username As DataFactoryElement(Of String), password As DataFactorySecret)

Parameters

uri
DataFactoryElement<String>

The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

username
DataFactoryElement<String>

User name for Basic authentication. Type: string (or Expression with resultType string).

password
DataFactorySecret

The password for Basic authentication.

Exceptions

uri, username or password is null.

Applies to

WebBasicAuthentication(DataFactoryElement<String>, DataFactoryElement<String>, DataFactorySecretBaseDefinition)

Source:
WebBasicAuthentication.cs

Initializes a new instance of WebBasicAuthentication.

public WebBasicAuthentication (Azure.Core.Expressions.DataFactory.DataFactoryElement<string> uri, Azure.Core.Expressions.DataFactory.DataFactoryElement<string> username, Azure.Core.Expressions.DataFactory.DataFactorySecretBaseDefinition password);
new Azure.ResourceManager.DataFactory.Models.WebBasicAuthentication : Azure.Core.Expressions.DataFactory.DataFactoryElement<string> * Azure.Core.Expressions.DataFactory.DataFactoryElement<string> * Azure.Core.Expressions.DataFactory.DataFactorySecretBaseDefinition -> Azure.ResourceManager.DataFactory.Models.WebBasicAuthentication
Public Sub New (uri As DataFactoryElement(Of String), username As DataFactoryElement(Of String), password As DataFactorySecretBaseDefinition)

Parameters

uri
DataFactoryElement<String>

The URL of the web service endpoint, e.g. https://www.microsoft.com . Type: string (or Expression with resultType string).

username
DataFactoryElement<String>

User name for Basic authentication. Type: string (or Expression with resultType string).

password
DataFactorySecretBaseDefinition

The password for Basic authentication.

Exceptions

uri, username or password is null.

Applies to