Implemented interface members:
method
GetCustomAttributes
System.Reflection.ICustomAttributeProvider.GetCustomAttributes(System.Type, System.Boolean)
method
GetCustomAttributes
System.Runtime.InteropServices._MemberInfo.GetCustomAttributes(System.Type, System.Boolean)
58 overrides of GetCustomAttributes
mscorlib (24)
PresentationFramework (1)
System (1)
System.Activities.Presentation (4)
System.Core (1)
System.Data (4)
System.Web (1)
System.Workflow.Activities (4)
System.Workflow.ComponentModel (16)
System.WorkflowServices (2)
280 references to GetCustomAttributes
mscorlib (25)
PresentationFramework (4)
System (5)
System.Activities (1)
System.Activities.Core.Presentation (6)
System.Activities.Presentation (8)
System.ComponentModel.DataAnnotations (1)
System.Core (2)
System.Data (11)
System.Data.Entity (10)
System.Data.Linq (6)
System.Data.Services (10)
System.Data.Services.Client (5)
System.Management (4)
System.Runtime.Serialization (11)
System.ServiceModel (1)
System.ServiceModel.Web (4)
System.Web (13)
System.Web.Extensions (8)
System.Web.Services (19)
System.Windows.Forms (1)
System.Workflow.Activities (50)
CorrelationValidator.cs (15)
46object[] attributes = interfaceType.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), false);
100attributes = interfaceType.GetCustomAttributes(typeof(CorrelationProviderAttribute), false);
106object[] correlationParameterAttributes = interfaceType.GetCustomAttributes(typeof(CorrelationParameterAttribute), false);
164attributes = targetMember.GetCustomAttributes(typeof(CorrelationInitializerAttribute), false) as object[];
256attributes = existingTargetMember.GetCustomAttributes(typeof(CorrelationInitializerAttribute), false) as object[];
376object[] attributes = interfaceType.GetCustomAttributes(typeof(CorrelationProviderAttribute), false);
379object[] dsAttribs = interfaceType.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), false);
380object[] corrParamAttribs = interfaceType.GetCustomAttributes(typeof(CorrelationParameterAttribute), false);
473foreach (object interfaceAttribute in interfaceType.GetCustomAttributes(typeof(CorrelationParameterAttribute), false))
504int aliasLength = memberInfo.GetCustomAttributes(typeof(CorrelationInitializerAttribute), false).Length;
525int aliasLength = memberInfo.GetCustomAttributes(typeof(CorrelationInitializerAttribute), false).Length;
635if (memberInfo.GetCustomAttributes(typeof(CorrelationInitializerAttribute), false).Length != 0 ||
636memberInfo.GetCustomAttributes(typeof(CorrelationAliasAttribute), false).Length != 0)
669foreach (object memberAttribute in memberInfo.GetCustomAttributes(typeof(CorrelationAliasAttribute), false))
925object[] attrs = type.GetCustomAttributes(typeof(SerializableAttribute), false);
LocalService\CorrelationResolver.cs (10)
104object[] corrProviderAttribs = this.interfaceType.GetCustomAttributes(typeof(CorrelationProviderAttribute), true);
107corrProviderAttribs = this.interfaceType.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), true);
108object[] corrParameterAttribs = this.interfaceType.GetCustomAttributes(typeof(CorrelationParameterAttribute), true);
276if ((member.GetCustomAttributes(typeof(CorrelationInitializerAttribute), true)).Length > 0)
283if ((member.GetCustomAttributes(typeof(CorrelationInitializerAttribute), true)).Length > 0)
306if (interfaceType.GetCustomAttributes(typeof(ExternalDataExchangeAttribute), true).Length == 0)
393customAttrs = eventInfo.GetCustomAttributes(typeof(CorrelationAliasAttribute), true);
396customAttrs = eventInfo.EventHandlerType.GetCustomAttributes(typeof(CorrelationAliasAttribute), true);
409customAttrs = methodInfo.GetCustomAttributes(typeof(CorrelationAliasAttribute), true);
441return type.GetCustomAttributes(typeof(CorrelationParameterAttribute), true);
System.Workflow.ComponentModel (46)
System.Workflow.Runtime (4)
System.WorkflowServices (15)
System.Xml (5)
WindowsBase (5)