Searched refs:attribute (Results 1 – 6 of 6) sorted by relevance
108 …var attribute = type.GetCustomAttributes(false).OfType<ConsoleBackendAnalyzerProviderAttribute>().… in GetProviderName()109 if(attribute != null) in GetProviderName()111 return attribute.Name; in GetProviderName()
208 var attribute = parameterInfo.GetCustomAttribute<ArgumentAttribute>(); in HandleArgumentNotResolved()209 if(attribute == null) in HandleArgumentNotResolved()222 …var separatorPosition = attribute.Separator == '\0' ? -1 : context.Packet.Data.DataAsString.IndexO… in HandleArgumentNotResolved()227 switch(attribute.Encoding) in HandleArgumentNotResolved()
132 …var attribute = (ImportAttribute)field.GetCustomAttributes(false).Single(x => x is ImportAttribute… in EnsureWrappersType()133 if(attribute.UseExceptionWrapper) in EnsureWrappersType()191 …var attribute = (ImportAttribute)field.GetCustomAttributes(false).First(x => x is ImportAttribute); in ResolveCallsToNative()192 … var cName = GetWrappedName(attribute.Name ?? GetCName(field.Name), attribute.UseExceptionWrapper); in ResolveCallsToNative()210 if(!attribute.Optional) in ResolveCallsToNative()216 if(attribute.UseExceptionWrapper && result != null) in ResolveCallsToNative()
139 .Any(attribute => in FindCallback()140 attribute.SampleType == sampleType && in FindCallback()141 attribute.Status == status && in FindCallback()142 attribute.ChannelId == channel && in FindCallback()143 attribute.Domain == domain)); in FindCallback()
144 …var attribute = candidateParametersWithoutArrayAndWriters[i].GetCustomAttributes(typeof(ValuesAttr… in RunCommand()145 if(attribute.Any()) in RunCommand()147 …if(!((ValuesAttribute)attribute[0]).Values.Contains(parametersWithoutLastArray[i].GetObjectValue()… in RunCommand()
1879 public MethodWithAttribute(MethodInfo method, T attribute) in MethodWithAttribute() argument1882 Attribute = attribute; in MethodWithAttribute()