Grant 메서드 (ObjectPermissionSet, String, String[], Boolean)
테이블의 지정한 열에 대해 피부여자에게 지정한 사용 권한을 부여하고 다른 사용자에게 지정한 사용 권한 집합을 부여할 수 있도록 합니다.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Sub Grant ( _
permission As ObjectPermissionSet, _
granteeName As String, _
columnNames As String(), _
grantGrant As Boolean _
)
‘사용 방법
Dim instance As Table
Dim permission As ObjectPermissionSet
Dim granteeName As String
Dim columnNames As String()
Dim grantGrant As Boolean
instance.Grant(permission, granteeName, _
columnNames, grantGrant)
public void Grant(
ObjectPermissionSet permission,
string granteeName,
string[] columnNames,
bool grantGrant
)
public:
virtual void Grant(
ObjectPermissionSet^ permission,
String^ granteeName,
array<String^>^ columnNames,
bool grantGrant
) sealed
abstract Grant :
permission:ObjectPermissionSet *
granteeName:string *
columnNames:string[] *
grantGrant:bool -> unit
override Grant :
permission:ObjectPermissionSet *
granteeName:string *
columnNames:string[] *
grantGrant:bool -> unit
public final function Grant(
permission : ObjectPermissionSet,
granteeName : String,
columnNames : String[],
grantGrant : boolean
)
매개 변수
- permission
유형: Microsoft.SqlServer.Management.Smo. . :: . .ObjectPermissionSet
사용 권한 집합을 지정하는 ObjectPermissionSet 개체입니다.
- granteeName
유형: System. . :: . .String
지정한 사용 권한 집합을 거부할 피부여자를 지정하는 String 값입니다.
- columnNames
유형: array<System. . :: . .String> [] () [] []
사용 권한 집합을 부여할 열 목록을 지정하는 String 배열 값입니다.
- grantGrant
유형: System. . :: . .Boolean
피부여자에게 테이블에 대해 지정한 사용 권한 집합을 다른 사용자에게 부여할 수 있는 권한을 제공할지 여부를 지정하는 Boolean 속성입니다.
True 이면 피부여자에게 테이블에 대해 지정한 사용 권한 집합을 다른 사용자에게 부여할 수 있는 권한이 제공되고, 그렇지 않으면 False입니다.
구현
IColumnPermission. . :: . .Grant(ObjectPermissionSet, String, array<String> [] () [] [], Boolean)