MustRunInClientContextAttribute Class
.NET Framework 2.0
Forces the attributed object to be created in the context of the creator, if possible. This class cannot be inherited.
Namespace: System.EnterpriseServices
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
Assembly: System.EnterpriseServices (in system.enterpriseservices.dll)
'Declaration <ComVisibleAttribute(False)> _ <AttributeUsageAttribute(AttributeTargets.Class, Inherited:=True)> _ Public NotInheritable Class MustRunInClientContextAttribute Inherits Attribute 'Usage Dim instance As MustRunInClientContextAttribute
/** @attribute ComVisibleAttribute(false) */ /** @attribute AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) */ public final class MustRunInClientContextAttribute extends Attribute
ComVisibleAttribute(false) AttributeUsageAttribute(AttributeTargets.Class, Inherited=true) public final class MustRunInClientContextAttribute extends Attribute
If the context attributes of the attributed object conflict with those of the context of the creator, a System.Runtime.InteropServices.COMException is thrown when an attempt is made to create the object.
For more information about using attributes, see Extending Metadata Using Attributes.
The following code example demonstrates the use of the MustRunInClientContextAttribute type.
Imports System Imports System.EnterpriseServices Imports System.Reflection ' References: ' System.EnterpriseServices <MustRunInClientContext()> _ Public Class MustRunInClientContextAttribute_Ctor Inherits ServicedComponent End Class 'MustRunInClientContextAttribute_Ctor <MustRunInClientContext(False)> _ Public Class MustRunInClientContextAttribute_Ctor_Bool Inherits ServicedComponent End Class 'MustRunInClientContextAttribute_Ctor_Bool <MustRunInClientContext(False)> _ Public Class MustRunInClientContextAttribute_Value Inherits ServicedComponent Public Sub ValueExample() ' Get the MustRunInClientContextAttribute applied to the class. Dim attribute As MustRunInClientContextAttribute = CType(Attribute.GetCustomAttribute(Me.GetType(), GetType(MustRunInClientContextAttribute), False), MustRunInClientContextAttribute) ' Display the value of the attribute's Value property. MsgBox("MustRunInClientContextAttribute.Value: " & attribute.Value) End Sub 'ValueExample End Class 'MustRunInClientContextAttribute_Value
import System.*;
import System.EnterpriseServices.*;
import System.Reflection.*;
// References:
// System.EnterpriseServices
/** @attribute MustRunInClientContext()
*/
public class MustRunInClientContextAttribute_Ctor extends ServicedComponent
{
} //MustRunInClientContextAttribute_Ctor
/** @attribute MustRunInClientContext(false)
*/
public class MustRunInClientContextAttribute_Ctor_Bool extends ServicedComponent
{
} //MustRunInClientContextAttribute_Ctor_Bool
/** @attribute MustRunInClientContext(false)
*/
public class MustRunInClientContextAttribute_Value extends ServicedComponent
{
public void ValueExample()
{
// Get the MustRunInClientContextAttribute applied to the class.
MustRunInClientContextAttribute attribute =
(MustRunInClientContextAttribute)(Attribute.GetCustomAttribute(
this.GetType(), MustRunInClientContextAttribute.class.ToType(),
false));
// Display the value of the attribute's Value property.
Console.WriteLine("MustRunInClientContextAttribute.Value: {0}",
(System.Boolean)attribute.get_Value());
} //ValueExample
} //MustRunInClientContextAttribute_Value
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: