11 references to GetCustomAttributes
dotnet-svcutil-lib (11)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\ServiceReflector.cs (1)
448
return
GetCustomAttributes
(attrProvider, attrType, false);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\TypeLoader.cs (9)
307
object[] ifaceAttributes = ServiceReflector.
GetCustomAttributes
(interfaceType, typeof(IContractBehavior), false);
321
foreach (IContractBehavior iContractBehavior in ServiceReflector.
GetCustomAttributes
(currentType, typeof(IContractBehavior), false))
330
object[] customAttributes = ServiceReflector.
GetCustomAttributes
(reflectionInfo.iface, typeof(ServiceKnownTypeAttribute), false);
343
customAttributes = ServiceReflector.
GetCustomAttributes
(reflectionInfo.callbackiface, typeof(ServiceKnownTypeAttribute), false);
453
object[] methodAttributes = ServiceReflector.
GetCustomAttributes
(method, typeof(IOperationBehavior), false);
595
foreach (IEndpointBehavior behaviorAttribute in ServiceReflector.
GetCustomAttributes
(implementationType, typeof(IEndpointBehavior), false))
606
foreach (IContractBehavior behaviorAttribute in ServiceReflector.
GetCustomAttributes
(implementationType, typeof(IContractBehavior), false))
972
object[] methodAttributes = ServiceReflector.
GetCustomAttributes
(methodInfo, typeof(FaultContractAttribute), false);
987
methodAttributes = ServiceReflector.
GetCustomAttributes
(methodInfo, typeof(ServiceKnownTypeAttribute), false);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (1)
816
var xfeAttributes = ServiceReflector.
GetCustomAttributes
(extension.GetType(), typeof(WsdlConfigNS.XmlFormatExtensionAttribute), false);