BlobAttribute Constructors

Definition

Overloads

BlobAttribute(String)

Initializes a new instance of the BlobAttribute class.

BlobAttribute(String, FileAccess)

Initializes a new instance of the BlobAttribute class.

BlobAttribute(String)

Source:
BlobAttribute.cs
Source:
BlobAttribute.cs

Initializes a new instance of the BlobAttribute class.

public BlobAttribute (string blobPath);
new Microsoft.Azure.WebJobs.BlobAttribute : string -> Microsoft.Azure.WebJobs.BlobAttribute
Public Sub New (blobPath As String)

Parameters

blobPath
String

The path of the blob to which to bind.

Applies to

BlobAttribute(String, FileAccess)

Source:
BlobAttribute.cs
Source:
BlobAttribute.cs

Initializes a new instance of the BlobAttribute class.

public BlobAttribute (string blobPath, System.IO.FileAccess access);
new Microsoft.Azure.WebJobs.BlobAttribute : string * System.IO.FileAccess -> Microsoft.Azure.WebJobs.BlobAttribute
Public Sub New (blobPath As String, access As FileAccess)

Parameters

blobPath
String

The path of the blob to which to bind.

access
FileAccess

The kind of operations that can be performed on the blob.

Applies to