13 writes to Name
dotnet-svcutil-lib (13)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
408xsa.Name = localName; 438xsa.Name = localName;
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (3)
448lang.Name = "lang"; 453xmlbase.Name = "base"; 458space.Name = "space";
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttribute.cs (1)
219set { Name = value; }
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (4)
2492tempXsiTypeSO.Name = "type"; 2500tempxsiNilSO.Name = "nil"; 2509tempxsiSLSO.Name = "schemaLocation"; 2518tempxsiNoNsSLSO.Name = "noNamespaceSchemaLocation";
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1293builder._attribute.Name = value;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
772attribute.Name = accessor.Name;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
9176o.@Name = Reader.Value;
24 references to Name
dotnet-svcutil-lib (24)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
1341if (schemaAttribute.Name == attrName) 1444if (null == FindAttribute(attributesInInstance, attr.Name))
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
1182if (attribute.Name != null) 1185attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 1205if (attribute.Name != null) 1209attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 1257if (attribute.Name == _xmlns)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (5)
831if (attribute.Name != null) 834attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, _targetNamespace)); 854if (attribute.Name != null) 858attribute.SetQualifiedName(new XmlQualifiedName(attribute.Name, (attribute.Form == XmlSchemaForm.Qualified || (attribute.Form == XmlSchemaForm.None && _attributeFormDefault == XmlSchemaForm.Qualified)) ? _targetNamespace : null)); 904if (attribute.Name == _xmlns)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttribute.cs (1)
218get { return Name; }
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
317WriteAttribute(@"name", @"", ((System.String)o.@Name));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
326throw new InvalidOperationException(string.Format(ResXml.XmlIllegalForm, a.Name));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (4)
1713if (attribute.Name.Length == 0) throw new InvalidOperationException(ResXml.XmlAttributeHasNoName); 1715identifier = CodeIdentifier.MakeValid(attribute.Name); 1717identifier += CodeIdentifier.MakePascal(attribute.Name); 1733accessor.Name = attribute.Name;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (4)
570return ((XmlSchemaAttribute)o).Name; 648if (a.Name == null || a.Name.Length == 0) 656item = string.Format(ResXml.XmlSchemaNamedItem, ns, "attribute", a.Name, details);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
4124WriteAttribute(@"name", @"", ((global::System.String)o.@Name));