ApplicationNameAttribute Class
.NET Framework 2.0
Specifies the name of the COM+ application to be used for the install of the components in the assembly. This class cannot be inherited.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
'Declaration <AttributeUsageAttribute(AttributeTargets.Assembly, Inherited:=True)> _ <ComVisibleAttribute(False)> _ Public NotInheritable Class ApplicationNameAttribute Inherits Attribute 'Usage Dim instance As ApplicationNameAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=true) */ /** @attribute ComVisibleAttribute(false) */ public final class ApplicationNameAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Assembly, Inherited=true) ComVisibleAttribute(false) public final class ApplicationNameAttribute extends Attribute
The following example demonstrates the use of this attribute to mark a ServicedComponent class.
import System.*;
import System.EnterpriseServices.*;
/** @assembly ApplicationName("Calculator")
*/
/** @assembly ApplicationActivation(ActivationOption.Library)
*/
/** @assembly System.Reflection.AssemblyKeyFile("Calculator.snk")
*/
public class Calculator extends ServicedComponent
{
public int Add(int x, int y)
{
return x + y;
} //Add
} //Calculator
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: