本文整理汇总了VB.NET中System.Security.Policy.IApplicationTrustManager.DetermineApplicationTrust方法的典型用法代码示例。如果您正苦于以下问题:VB.NET IApplicationTrustManager.DetermineApplicationTrust方法的具体用法?VB.NET IApplicationTrustManager.DetermineApplicationTrust怎么用?VB.NET IApplicationTrustManager.DetermineApplicationTrust使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Security.Policy.IApplicationTrustManager
的用法示例。
在下文中一共展示了IApplicationTrustManager.DetermineApplicationTrust方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: DetermineApplicationTrust
Public Function DetermineApplicationTrust(ByVal appContext As ActivationContext, ByVal context As TrustManagerContext) As ApplicationTrust Implements IApplicationTrustManager.DetermineApplicationTrust
Dim trust As New ApplicationTrust(appContext.Identity)
trust.IsApplicationTrustedToRun = False
Dim asi As New ApplicationSecurityInfo(appContext)
trust.DefaultGrantSet = New PolicyStatement(asi.DefaultRequestSet, _
PolicyStatementAttribute.Nothing)
If context.UIContext = TrustManagerUIContext.Run Then
Dim message As String = "Do you want to run " + asi.ApplicationId.Name + " ?"
Dim caption As String = "MyTrustManager"
Dim buttons As MessageBoxButtons = MessageBoxButtons.YesNo
Dim result As DialogResult
' Displays the MessageBox.
result = MessageBox.Show(message, caption, buttons)
If result = DialogResult.Yes Then
trust.IsApplicationTrustedToRun = True
If Not (context Is Nothing) Then
trust.Persist = context.Persist
Else
trust.Persist = False
End If
End If
End If
Return trust
End Function 'DetermineApplicationTrust
开发者ID:VB.NET开发者,项目名称:System.Security.Policy,代码行数:28,代码来源:IApplicationTrustManager.DetermineApplicationTrust