AutoCompleteAttribute Class
Marks the attributed method as an AutoComplete object. This class cannot be inherited.
Assembly: System.EnterpriseServices (in System.EnterpriseServices.dll)
If AutoComplete is specified, it must not be disabled in the COM+ catalog; if enabled in the COM+ catalog, it must be specified on the component.
The transaction automatically calls SetComplete if the method call returns normally. If the method call throws an exception, the transaction is aborted.
The following code example demonstrates the use of the AutoCompleteAttribute type.
Imports System Imports System.EnterpriseServices Imports System.Reflection ' References: ' System.EnterpriseServices Public Class AutoCompleteAttribute_Example Inherits ServicedComponent <AutoComplete()> _ Public Sub AutoCompleteAttribute_Ctor() End Sub 'AutoCompleteAttribute_Ctor <AutoComplete(True)> _ Public Sub AutoCompleteAttribute_Ctor_Bool() End Sub 'AutoCompleteAttribute_Ctor_Bool <AutoComplete(False)> _ Public Sub AutoCompleteAttribute_Value() ' Get information on the member. Dim memberinfo As System.Reflection.MemberInfo() = Me.GetType().GetMember("AutoCompleteAttribute_Value") ' Get the AutoCompleteAttribute applied to the member. Dim attribute As AutoCompleteAttribute = CType(System.Attribute.GetCustomAttribute(memberinfo(0), GetType(AutoCompleteAttribute), False), AutoCompleteAttribute) ' Display the value of the attribute's Value property. MsgBox("AutoCompleteAttribute.Value: " & attribute.Value) End Sub 'AutoCompleteAttribute_Value End Class 'AutoCompleteAttribute_Example
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.