AutoCompleteAttribute Class
.NET Framework 2.0
Marks the attributed method as an AutoComplete object. 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.Method, Inherited:=True)> _ <ComVisibleAttribute(False)> _ Public NotInheritable Class AutoCompleteAttribute Inherits Attribute 'Usage Dim instance As AutoCompleteAttribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Method, Inherited=true) */ /** @attribute ComVisibleAttribute(false) */ public final class AutoCompleteAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Method, Inherited=true) ComVisibleAttribute(false) public final class AutoCompleteAttribute extends Attribute
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
import System.*;
import System.EnterpriseServices.*;
import System.Reflection.*;
// References:
// System.EnterpriseServices
public class AutoCompleteAttribute_Example extends ServicedComponent
{
/** @attribute AutoComplete()
*/
public void AutoCompleteAttribute_Ctor()
{
} //AutoCompleteAttribute_Ctor
/** @attribute AutoComplete(true)
*/
public void AutoCompleteAttribute_Ctor_Bool()
{
} //AutoCompleteAttribute_Ctor_Bool
/** @attribute AutoComplete(false)
*/
public void AutoCompleteAttribute_Value()
{
// Get information on the member.
System.Reflection.MemberInfo memberInfo[] =
this.GetType().GetMember("AutoCompleteAttribute_Value");
// Get the AutoCompleteAttribute applied to the member.
AutoCompleteAttribute attribute =
(AutoCompleteAttribute)(System.Attribute.GetCustomAttribute(
memberInfo[0], AutoCompleteAttribute.class.ToType(), false));
// Display the value of the attribute's Value property.
Console.WriteLine("AutoCompleteAttribute.Value: {0}",
System.Convert.ToString(attribute.get_Value()));
} //AutoCompleteAttribute_Value
} //AutoCompleteAttribute_Example
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: