다음을 통해 공유


방법: 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

Copyright © 2007 by Microsoft Corporation. All rights reserved.