WebPermissionAttribute.Accept 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
현재 WebPermissionAttribute에서 받아들이는 URI 문자열을 가져오거나 설정합니다.
public:
property System::String ^ Accept { System::String ^ get(); void set(System::String ^ value); };
public string Accept { get; set; }
member this.Accept : string with get, set
Public Property Accept As String
속성 값
현재 WebPermissionAttribute에서 받아들이는 URI를 포함하는 문자열입니다.
예외
값 설정 시 Accept이 null
이 아닌 경우. 둘 이상의 Access URI를 지정하려면 추가 특성 선언문을 사용합니다.
예제
다음 예제에서는 를 사용하여 WebPermissionAttribute 허용 가능한 Accept 문자열을 지정하는 방법을 보여 줍니다.
public:
// Deny access to a specific resource by setting the Accept property.
[method:WebPermission(SecurityAction::Deny,Accept="http://www.contoso.com/Private.htm")]
static void CheckAcceptPermission( String^ uriToCheck )
{
WebPermission^ permissionToCheck = gcnew WebPermission;
permissionToCheck->AddPermission( NetworkAccess::Accept, uriToCheck );
permissionToCheck->Demand();
}
static void demoDenySite()
{
// Pass the security check when accessing allowed resources.
CheckAcceptPermission( "http://www.contoso.com/" );
Console::WriteLine( "Public page has passed Accept permission check" );
try
{
// Throw a SecurityException when trying to access not allowed resources.
CheckAcceptPermission( "http://www.contoso.com/Private.htm" );
Console::WriteLine( "This line will not be printed" );
}
catch ( SecurityException^ e )
{
Console::WriteLine( "Exception trying to access private resource: {0}", e->Message );
}
}
// Deny access to a specific resource by setting the Accept property.
[WebPermission(SecurityAction.Deny, Accept=@"http://www.contoso.com/Private.htm")]
public static void CheckAcceptPermission(string uriToCheck)
{
WebPermission permissionToCheck = new WebPermission();
permissionToCheck.AddPermission(NetworkAccess.Accept, uriToCheck);
permissionToCheck.Demand();
}
public static void demoDenySite()
{
//Pass the security check when accessing allowed resources.
CheckAcceptPermission("http://www.contoso.com/");
Console.WriteLine("Public page has passed Accept permission check");
try
{
//Throw a SecurityException when trying to access not allowed resources.
CheckAcceptPermission("http://www.contoso.com/Private.htm");
Console.WriteLine("This line will not be printed");
}
catch (SecurityException e)
{
Console.WriteLine("Exception trying to access private resource:" + e.Message);
}
}
' Deny access to a specific resource by setting the Accept property.
<WebPermission(SecurityAction.Deny, Accept := "http://www.contoso.com/Private.htm")> _
Public Shared Sub CheckAcceptPermission(uriToCheck As String)
Dim permissionToCheck As New WebPermission()
permissionToCheck.AddPermission(NetworkAccess.Accept, uriToCheck)
permissionToCheck.Demand()
End Sub
Public Shared Sub demoDenySite()
' Pass the security check when accessing allowed resources.
CheckAcceptPermission("http://www.contoso.com/Public.htm")
Console.WriteLine("Public page has passed Accept permission check")
Try
'Throw a SecurityException when trying to access not allowed resources.
CheckAcceptPermission("http://www.contoso.com/Private.htm")
Console.WriteLine("This line will not be printed")
Catch e As SecurityException
Console.WriteLine(("Exception trying to access private resource:" + e.Message))
End Try
End Sub
설명
클래스에 적용할 WebPermissionAttribute 때 이 속성은 클래스 내에서 사용할 수 있도록 허용되는 URI 문자열을 지정합니다. 이 권한은 보안 시스템에서 를 호출 CreatePermission할 때 적용됩니다. 이 속성은 쓰기가 한 번입니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET