你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

BlobAttribute 构造函数

定义

重载

BlobAttribute(String)

初始化 BlobAttribute 类的新实例。

BlobAttribute(String, FileAccess)

初始化 BlobAttribute 类的新实例。

BlobAttribute(String)

Source:
BlobAttribute.cs
Source:
BlobAttribute.cs

初始化 BlobAttribute 类的新实例。

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

参数

blobPath
String

要绑定到的 Blob 的路径。

适用于

BlobAttribute(String, FileAccess)

Source:
BlobAttribute.cs
Source:
BlobAttribute.cs

初始化 BlobAttribute 类的新实例。

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)

参数

blobPath
String

要绑定到的 Blob 的路径。

access
FileAccess

可以在 Blob 上执行的操作类型。

适用于