ServerRole.Grant メソッド (ObjectPermissionSet, String, Boolean, String)
指定した権限セットを権限付与対象ユーザーに許可します。さらに、与えられているロールに基づいて、サーバー ロールの指定した権限セットを他のユーザーに許可する権利を与えます。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub Grant ( _
permission As ObjectPermissionSet, _
granteeName As String, _
grantGrant As Boolean, _
asRole As String _
)
'使用
Dim instance As ServerRole
Dim permission As ObjectPermissionSet
Dim granteeName As String
Dim grantGrant As Boolean
Dim asRole As String
instance.Grant(permission, granteeName, _
grantGrant, asRole)
public void Grant(
ObjectPermissionSet permission,
string granteeName,
bool grantGrant,
string asRole
)
public:
virtual void Grant(
ObjectPermissionSet^ permission,
String^ granteeName,
bool grantGrant,
String^ asRole
) sealed
abstract Grant :
permission:ObjectPermissionSet *
granteeName:string *
grantGrant:bool *
asRole:string -> unit
override Grant :
permission:ObjectPermissionSet *
granteeName:string *
grantGrant:bool *
asRole:string -> unit
public final function Grant(
permission : ObjectPermissionSet,
granteeName : String,
grantGrant : boolean,
asRole : String
)
パラメーター
- permission
型: Microsoft.SqlServer.Management.Smo.ObjectPermissionSet
権限のセットを示す ObjectPermissionSet オブジェクトです。
- granteeName
型: System.String
サーバー ロールの指定された権限のセットを許可する対象の権限付与対象ユーザーを示す String 値です。
- grantGrant
型: System.Boolean
権限付与対象ユーザーに対し、サーバー ロールの指定した権限セットを他のユーザーに許可する権限を付与するかどうかを示す Boolean プロパティです。
- asRole
型: System.String
サーバー ロールの指定された権限のセットを他のユーザーに許可するときに、ユーザーが与えられるロールを示す String 値です。 このパラメーターは、複数のロールのメンバーである権限付与対象ユーザーに対して使用します。
実装
IObjectPermission.Grant(ObjectPermissionSet, String, Boolean, String)