7 references to ContractNamespaceAttribute
dotnet-svcutil-lib (7)
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\DataContract.cs (4)
1723string ns = GetGlobalDataContractNamespace(clrNs, type.GetTypeInfo().Module.GetCustomAttributes(typeof(ContractNamespaceAttribute)).ToArray()); 1725ns = GetGlobalDataContractNamespace(clrNs, type.GetTypeInfo().Assembly.GetCustomAttributes(typeof(ContractNamespaceAttribute)).ToArray()); 1844ContractNamespaceAttribute nsAttribute = (ContractNamespaceAttribute)nsAttributes[i];
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\Globals.cs (1)
373s_typeOfContractNamespaceAttribute = typeof(ContractNamespaceAttribute);
TypeLoader.cs (2)
101type.Assembly.GetCustomAttributes(typeof(ContractNamespaceAttribute)); 102type.Module.GetCustomAttributes(typeof(ContractNamespaceAttribute));