如何:将 ApplicationID 属性应用于程序集

此示例说明了如何将 ApplicationID 属性应用于程序集。

示例

Imports System.EnterpriseServices
<assembly: ApplicationName("BankComponent")>
< assembly: ApplicationID("4fb2d46f-efc8-4643-bcd0-6e5bfa6a174c")>
Public Class Account 
Inherits ServicedComponent
   Shared Sub Main()
   End Sub
End Class 
using System.EnterpriseServices;
[ assembly: ApplicationName("BankComponent")]
[ assembly: ApplicationID("4fb2d46f-efc8-4643-bcd0-6e5bfa6a174c")] 
public class Account : ServicedComponent
{
   static void Main() {}
}

编译代码

此示例需要:

  • 引用 System 和 System.EnterpriseServices 命名空间

请参见

参考

System.EnterpriseServices

概念

注册服务组件

Footer image

版权所有 (C) 2007 Microsoft Corporation。保留所有权利。