Deny メソッド (ServerPermissionSet, String[], Boolean)
SQL Server のインスタンスの、指定した権限付与対象ユーザーと、その権限付与対象ユーザーが指定した権限のセットを許可した他のユーザーに対し、指定した権限のセットを拒否します。
名前空間: Microsoft.SqlServer.Management.Smo
アセンブリ: Microsoft.SqlServer.Smo (Microsoft.SqlServer.Smo.dll)
構文
'宣言
Public Sub Deny ( _
permission As ServerPermissionSet, _
granteeNames As String(), _
cascade As Boolean _
)
'使用
Dim instance As Server
Dim permission As ServerPermissionSet
Dim granteeNames As String()
Dim cascade As Boolean
instance.Deny(permission, granteeNames, _
cascade)
public void Deny(
ServerPermissionSet permission,
string[] granteeNames,
bool cascade
)
public:
void Deny(
ServerPermissionSet^ permission,
array<String^>^ granteeNames,
bool cascade
)
member Deny :
permission:ServerPermissionSet *
granteeNames:string[] *
cascade:bool -> unit
public function Deny(
permission : ServerPermissionSet,
granteeNames : String[],
cascade : boolean
)
パラメーター
- permission
型: Microsoft.SqlServer.Management.Smo. . :: . .ServerPermissionSet
権限のセットを示す ServerPermissionSet オブジェクトの値です。
- granteeNames
型: array<System. . :: . .String> [] () [] []
特定の権限のセットが拒否されるユーザーの一覧を示す String 配列です。
- cascade
型: System. . :: . .Boolean
指定した権限のセットを権限付与対象ユーザーが許可したユーザーについても、SQL Server インスタンスの指定した権限のセットへのアクセスを拒否するかどうかを示す Boolean プロパティです。
True の場合は、権限付与対象ユーザーだけでなく、その権限付与対象ユーザーが指定した権限のセットを許可したユーザーについても、指定した権限のセットを拒否します。
False の場合、特定の権限のセットが拒否されるのは、権限が与えられているユーザーだけです。
使用例
'Connect to the local, default instance of SQL Server.
Dim svr As Server
svr = New Server()
'Define a ServerPermissionSet that contains permission to Create Endpoint and Alter Any Endpoint.
Dim sps As ServerPermissionSet
sps = New ServerPermissionSet(ServerPermission.CreateEndpoint)
sps.Add(ServerPermission.AlterAnyEndpoint)
'This sample assumes that the grantee already has permission to Create Endpoints.
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
Dim spis As ServerPermissionInfo()
spis = svr.EnumServerPermissions(vGrantee, sps)
Dim spi As ServerPermissionInfo
Console.WriteLine("=================Before revoke===========================")
For Each spi In spis
Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine(" ")
'Remove a permission from the set.
sps.Remove(ServerPermission.CreateEndpoint)
'Revoke the create endpoint permission from the grantee.
svr.Revoke(sps, vGrantee)
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
spis = svr.EnumServerPermissions(vGrantee, sps)
Console.WriteLine("=================After revoke============================")
For Each spi In spis
Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine(" ")
'Grant the Create Endpoint permission to the grantee.
svr.Grant(sps, vGrantee)
'Enumerate and display the server permissions in the set for the grantee specified in the vGrantee string variable.
spis = svr.EnumServerPermissions(vGrantee, sps)
Console.WriteLine("=================After grant=============================")
For Each spi In spis
Console.WriteLine(spi.Grantee & " has " & spi.PermissionType.ToString & " permission.")
Next
Console.WriteLine("")