AutoCompleteAttribute Class
.NET Framework 3.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)
[AttributeUsageAttribute(AttributeTargets.Method, Inherited=true)] [ComVisibleAttribute(false)] public sealed class AutoCompleteAttribute : Attribute
/** @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
Not applicable.
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.
using System; using System.EnterpriseServices; using System.Reflection; // References: // System.EnterpriseServices public class AutoCompleteAttribute_Example : ServicedComponent { [AutoComplete] public void AutoCompleteAttribute_Ctor() { } [AutoComplete(true)] public void AutoCompleteAttribute_Ctor_Bool() { } [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], typeof(AutoCompleteAttribute), false); // Display the value of the attribute's Value property. Console.WriteLine("AutoCompleteAttribute.Value: {0}", attribute.Value); } }
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
Community Additions
ADD
Show: