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

Permission 构造函数

定义

重载

Permission()

初始化 Permission 类的新实例。

Permission(IList<String>, IList<String>, IList<String>, IList<String>)

初始化 Permission 类的新实例。

Permission()

初始化 Permission 类的新实例。

public Permission ();
Public Sub New ()

适用于

Permission(IList<String>, IList<String>, IList<String>, IList<String>)

初始化 Permission 类的新实例。

public Permission (System.Collections.Generic.IList<string> actions = default, System.Collections.Generic.IList<string> notActions = default, System.Collections.Generic.IList<string> dataActions = default, System.Collections.Generic.IList<string> notDataActions = default);
new Microsoft.Azure.Management.Authorization.Models.Permission : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.Authorization.Models.Permission
Public Sub New (Optional actions As IList(Of String) = Nothing, Optional notActions As IList(Of String) = Nothing, Optional dataActions As IList(Of String) = Nothing, Optional notDataActions As IList(Of String) = Nothing)

参数

actions
IList<String>

允许的操作。

notActions
IList<String>

拒绝的操作。

dataActions
IList<String>

允许的数据操作。

notDataActions
IList<String>

拒绝数据操作。

适用于