ApplicationIDAttribute(String) 建構函式

定義

指定代表 COM+ 應用程式之應用程式識別碼的 GUID,初始化 ApplicationIDAttribute 類別的新執行個體。

public:
 ApplicationIDAttribute(System::String ^ guid);
public ApplicationIDAttribute (string guid);
new System.EnterpriseServices.ApplicationIDAttribute : string -> System.EnterpriseServices.ApplicationIDAttribute
Public Sub New (guid As String)

參數

guid
String

與 COM+ 應用程式關聯的 GUID。

範例

下列程式代碼範例示範如何建立新的 ApplicationIDAttribute

// 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")]
' 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")>

適用於