本文整理匯總了VB.NET中System.Net.WebPermissionAttribute.Accept屬性的典型用法代碼示例。如果您正苦於以下問題:VB.NET WebPermissionAttribute.Accept屬性的具體用法?VB.NET WebPermissionAttribute.Accept怎麽用?VB.NET WebPermissionAttribute.Accept使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類System.Net.WebPermissionAttribute
的用法示例。
在下文中一共展示了WebPermissionAttribute.Accept屬性的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的VB.NET代碼示例。
示例1: CheckAcceptPermission
' 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