27 instantiations of XmlAttributes
dotnet-svcutil-lib (27)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
1315XmlAttributes methodAttrs = new XmlAttributes(customAttribs);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (5)
27private XmlAttributes _defaultAttributes = new XmlAttributes(); 248return new XmlAttributes(type.GetTypeInfo().GetCustomAttributes()); 256return customAttribs != null ? new XmlAttributes(customAttribs) : null; 1342XmlAttributes structAttrs = new XmlAttributes(xmlReflectionMember.MemberType.GetTypeInfo().GetCustomAttributes()); 2249XmlAttributes a = new XmlAttributes(type.GetTypeInfo().GetCustomAttributes());
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (1)
18private XmlAttributes _xmlAttributes = new XmlAttributes();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (2)
837member.XmlAttributes = new XmlAttributes(additionalAttributesProvider.GetCustomAttributes()); 841member.XmlAttributes = new XmlAttributes();
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (18)
33table.Add(typeof(ServiceDescription), new XmlAttributes()); 34table.Add(typeof(Import), new XmlAttributes()); 35table.Add(typeof(Port), new XmlAttributes()); 36table.Add(typeof(Service), new XmlAttributes()); 37table.Add(typeof(FaultBinding), new XmlAttributes()); 38table.Add(typeof(InputBinding), new XmlAttributes()); 39table.Add(typeof(OutputBinding), new XmlAttributes()); 40table.Add(typeof(OperationBinding), new XmlAttributes()); 41table.Add(typeof(Binding), new XmlAttributes()); 42table.Add(typeof(OperationFault), new XmlAttributes()); 43table.Add(typeof(OperationInput), new XmlAttributes()); 44table.Add(typeof(OperationOutput), new XmlAttributes()); 45table.Add(typeof(Operation), new XmlAttributes()); 46table.Add(typeof(PortType), new XmlAttributes()); 47table.Add(typeof(Message), new XmlAttributes()); 48table.Add(typeof(MessagePart), new XmlAttributes()); 49table.Add(typeof(Types), new XmlAttributes()); 69xmlAttrs = new XmlAttributes();
36 references to XmlAttributes
dotnet-svcutil-lib (36)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (1)
1315XmlAttributes methodAttrs = new XmlAttributes(customAttribs);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlAttributeOverrides.cs (5)
26public void Add(Type type, XmlAttributes attributes) 35public void Add(Type type, string member, XmlAttributes attributes) 54public XmlAttributes this[Type type] 66public XmlAttributes this[Type type, string member] 72return (XmlAttributes)members[member];
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionImporter.cs (23)
27private XmlAttributes _defaultAttributes = new XmlAttributes(); 240private XmlAttributes GetAttributes(Type type, bool canBeSimpleType) 242XmlAttributes attrs = _attributeOverrides[type]; 251private XmlAttributes GetAttributes(MemberInfo memberInfo) 253XmlAttributes attrs = _attributeOverrides[memberInfo.DeclaringType, memberInfo.Name]; 261XmlAttributes a = GetAttributes(model.Type, true); 383private TypeMapping ImportTypeMapping(TypeModel model, string ns, ImportContext context, string dataType, XmlAttributes a, RecursionLimiter limiter) 388private TypeMapping ImportTypeMapping(TypeModel model, string ns, ImportContext context, string dataType, XmlAttributes a, bool repeats, bool openModel, RecursionLimiter limiter) 726private StructMapping ImportStructLikeMapping(StructModel model, string ns, bool openModel, XmlAttributes a, RecursionLimiter limiter) 852XmlAttributes memberAttrs = GetAttributes(memberInfo); 937private static bool IsAnonymousType(XmlAttributes a, string contextNs) 962internal string XsdTypeName(Type type, XmlAttributes a, string name) 1001XmlAttributes a = GetAttributes(type, false); 1186XmlAttributes a = GetAttributes(model.Type, false); 1228XmlAttributes a = GetAttributes(model.FieldInfo); 1322XmlAttributes a = xmlReflectionMember.XmlAttributes; 1342XmlAttributes structAttrs = new XmlAttributes(xmlReflectionMember.MemberType.GetTypeInfo().GetCustomAttributes()); 1399private MemberMapping ImportFieldMapping(StructModel parent, FieldModel model, XmlAttributes a, string ns, RecursionLimiter limiter) 1515private void ImportAccessorMapping(MemberMapping accessor, FieldModel model, XmlAttributes a, string ns, Type choiceIdentifierType, bool rpc, bool openModel, RecursionLimiter limiter) 2033private void CheckTopLevelAttributes(XmlAttributes a, string accessorName) 2065private void CheckAmbiguousChoice(XmlAttributes a, Type accessorType, string accessorName) 2133private object GetDefaultValue(TypeDesc fieldTypeDesc, Type t, XmlAttributes a) 2249XmlAttributes a = new XmlAttributes(type.GetTypeInfo().GetCustomAttributes());
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlReflectionMember.cs (2)
18private XmlAttributes _xmlAttributes = new XmlAttributes(); 37public XmlAttributes XmlAttributes
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\XmlSerializerOperationBehavior.cs (1)
911private static bool HasNoXmlParameterAttributes(XmlAttributes xmlAttributes)
FrameworkFork\System.Web.Services\Configuration\WebServicesSection.cs (4)
66XmlAttributes xmlAttrs = (XmlAttributes)table[extensionPointType]; 94XmlAttributes xmlAttrs = (XmlAttributes)table[extensionPointType];