ApplicationIDAttribute Class
.NET Framework 3.0
Specifies the application ID (as a GUID) for this assembly. This class cannot be inherited.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
[AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=true)] [ComVisibleAttribute(false)] public sealed class ApplicationIDAttribute : Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=true) */ /** @attribute ComVisibleAttribute(false) */ public final class ApplicationIDAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=true) ComVisibleAttribute(false) public final class ApplicationIDAttribute extends Attribute
Not applicable.
The following code example demonstrates the use of the ApplicationIDAttribute type.
using System; using System.EnterpriseServices; using 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 : ServicedComponent { public void ValueExample() { // Get the ApplicationIDAttribute applied to the assembly. ApplicationIDAttribute attribute = (ApplicationIDAttribute)Attribute.GetCustomAttribute( System.Reflection.Assembly.GetExecutingAssembly(), typeof(ApplicationIDAttribute), false); // Display the value of the attribute's Value property. Console.WriteLine("ApplicationIDAttribute.Value: {0}", attribute.Value); } }
import System.*;
import System.EnterpriseServices.*;
import 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 extends ServicedComponent
{
public void ValueExample()
{
// Get the ApplicationIDAttribute applied to the assembly.
ApplicationIDAttribute attribute = (ApplicationIDAttribute)(
Attribute.GetCustomAttribute(System.Reflection.Assembly.
GetExecutingAssembly(), ApplicationIDAttribute.class.ToType(),
false));
// Display the value of the attribute's Value property.
Console.WriteLine("ApplicationIDAttribute.Value: {0}",
attribute.get_Value());
} //ValueExample
} //ApplicationIDAttribute_Value
Community Additions
ADD
Show: