本文整理汇总了VB.NET中System.EnterpriseServices.ApplicationIDAttribute类的典型用法代码示例。如果您正苦于以下问题:VB.NET ApplicationIDAttribute类的具体用法?VB.NET ApplicationIDAttribute怎么用?VB.NET ApplicationIDAttribute使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ApplicationIDAttribute类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的VB.NET代码示例。
示例1: ApplicationIDAttribute_Value
' 导入命名空间
Imports System.EnterpriseServices
Imports System.Reflection
' References:
' System.EnterpriseServices
' The GUID (Globally Unique Identifier) shown below is for example purposes
' only and should be replaced by a GUID that you have generated.
<Assembly: ApplicationID("727FC170-1D80-4e89-84CC-22AAB10A6F24")>
Public Class ApplicationIDAttribute_Value
Inherits ServicedComponent
Public Sub ValueExample()
' Get the ApplicationIDAttribute applied to the assembly.
Dim attribute As ApplicationIDAttribute = CType(Attribute.GetCustomAttribute(System.Reflection.Assembly.GetExecutingAssembly(), GetType(ApplicationIDAttribute), False), ApplicationIDAttribute)
' Display the value of the attribute's Value property.
MsgBox("ApplicationIDAttribute.Value: " & attribute.Value.ToString())
End Sub
End Class