MustRunInClientContextAttribute Class
Forces the attributed object to be created in the context of the creator, if possible. This class cannot be inherited.
Assembly: System.EnterpriseServices (in System.EnterpriseServices.dll)
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
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.