Grant 方法 (ObjectPermissionSet, String, Boolean)
授與指定權限集的存取權給被授與者,以及在預存程序上將存取權授與其他使用者的能力。
命名空間: Microsoft.SqlServer.Management.Smo
組件: Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)
語法
'宣告
Public Sub Grant ( _
permission As ObjectPermissionSet, _
granteeName As String, _
grantGrant As Boolean _
)
'用途
Dim instance As StoredProcedure
Dim permission As ObjectPermissionSet
Dim granteeName As String
Dim grantGrant As Boolean
instance.Grant(permission, granteeName, _
grantGrant)
public void Grant(
ObjectPermissionSet permission,
string granteeName,
bool grantGrant
)
public:
virtual void Grant(
ObjectPermissionSet^ permission,
String^ granteeName,
bool grantGrant
) sealed
abstract Grant :
permission:ObjectPermissionSet *
granteeName:string *
grantGrant:bool -> unit
override Grant :
permission:ObjectPermissionSet *
granteeName:string *
grantGrant:bool -> unit
public final function Grant(
permission : ObjectPermissionSet,
granteeName : String,
grantGrant : boolean
)
參數
- permission
型別:Microsoft.SqlServer.Management.Smo. . :: . .ObjectPermissionSet
指定權限集的 ObjectPermissionSet 物件。
- granteeName
型別:System. . :: . .String
String 值,指定要對其拒絕所指定權限集的被授與者。
- grantGrant
型別:System. . :: . .Boolean
Boolean 屬性,指定被授與者是否能夠將權限集授與預存程序上的其他使用者。
如果為 True,則表示被授與者能夠將指定的權限集授與預存程序上的其他使用者。
如果為 False,則表示被授與者無法將指定的權限集授與預存程序上的其他使用者。
實作
IObjectPermission. . :: . .Grant(ObjectPermissionSet, String, Boolean)