This documentation is archived and is not being maintained.

MustRunInClientContextAttribute Class

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)

'Declaration
<ComVisibleAttribute(False)> _
<AttributeUsageAttribute(AttributeTargets.Class, Inherited := True)> _
Public NotInheritable Class MustRunInClientContextAttribute _
	Inherits Attribute
'Usage
Dim instance As MustRunInClientContextAttribute

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

System.Object
  System.Attribute
    System.EnterpriseServices.MustRunInClientContextAttribute

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

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.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: