UIPermission.Copy 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 사용 권한의 동일한 복사본을 만들고 반환합니다.
public:
override System::Security::IPermission ^ Copy();
public override System.Security.IPermission Copy ();
override this.Copy : unit -> System.Security.IPermission
Public Overrides Function Copy () As IPermission
반환
현재 사용 권한의 복사본입니다.
예제
다음 코드 예제는 메서드의 동작을 Copy 보여줍니다. 이 예제는에 대해 제공 된 큰 예제의 일부는 UIPermission 클래스입니다.
참고
코드 예제는 메서드의 동작을 표시하기 위한 것이며, 메서드의 사용을 보여 주는 것이 아닙니다. 으로 보안 인프라를 권한 클래스의 메서드를 사용 하는 일반적으로 애플리케이션에서 사용 되지 됩니다.
//Copy creates and returns an identical copy of the current permission.
void CopyDemo()
{
Console::WriteLine("\n************************* Copy() Demo *************************\n");
UIPermission ^ uiPerm1 = gcnew UIPermission(UIPermissionWindow::SafeTopLevelWindows);
UIPermission ^ uiPerm2 = gcnew UIPermission(PermissionState::None);
uiPerm2 = (UIPermission ^)uiPerm1->Copy();
if (uiPerm2 != nullptr)
Console::WriteLine("The copy succeeded: " + uiPerm2->ToString());
}
//Copy creates and returns an identical copy of the current permission.
private static void CopyDemo()
{
UIPermission uiPerm1 = new UIPermission(UIPermissionWindow.SafeTopLevelWindows);
UIPermission uiPerm2 = new UIPermission(PermissionState.None);
uiPerm2 = (UIPermission)uiPerm1.Copy();
if (uiPerm2 != null)
{
Console.WriteLine("The copy succeeded: " + uiPerm2.ToString() + " \n");
}
}
'Copy creates and returns an identical copy of the current permission.
Private Shared Sub CopyDemo()
Dim uiPerm1 As New UIPermission(UIPermissionWindow.SafeTopLevelWindows)
Dim uiPerm2 As New UIPermission(PermissionState.None)
uiPerm2 = CType(uiPerm1.Copy(), UIPermission)
If Not (uiPerm2 Is Nothing) Then
Console.WriteLine("The copy succeeded: " + uiPerm2.ToString() + " " + vbLf)
End If
End Sub
설명
사용 권한의 복사본은 원래 권한과 동일한 리소스 액세스를 나타냅니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET