1 write to MethodInfo
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\CustomAttributeProvider.cs (1)
35this.MethodInfo = (MethodInfo)attrProvider;
6 references to MethodInfo
dotnet-svcutil-lib (6)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\CustomAttributeProvider.cs (3)
67return this.MethodInfo.GetCustomAttributes(inherit).ToArray(); 84return this.MethodInfo.GetCustomAttributes(attributeType, inherit).ToArray(); 103return this.MethodInfo.IsDefined(attributeType, inherit);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (1)
482MethodInfo method = attrProvider.MethodInfo;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (2)
367if (type == null && provider.MethodInfo != null) 368type = provider.MethodInfo.DeclaringType;