41 references to Unqualified
System.Data (2)
fx\src\data\System\Data\XMLSchema.cs (2)
2167if (elem.Form == XmlSchemaForm.Unqualified) { 2175if (((XmlSchema)e).ElementFormDefault == XmlSchemaForm.Unqualified) {
System.Web.Services (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
3290case global::System.Xml.Schema.XmlSchemaForm.@Unqualified: s = @"unqualified"; break; 8687case @"unqualified": return global::System.Xml.Schema.XmlSchemaForm.@Unqualified;
System.Xml (37)
System\Xml\Schema\Inference\Infer.cs (4)
358xs.AttributeFormDefault = XmlSchemaForm.Unqualified; 444if (xs.AttributeFormDefault != XmlSchemaForm.Unqualified) 446xsa.Form = XmlSchemaForm.Unqualified; 502xs.AttributeFormDefault = XmlSchemaForm.Unqualified;
System\Xml\Schema\Preprocessor.cs (2)
881this.elementFormDefault = XmlSchemaForm.Unqualified; 885this.attributeFormDefault = XmlSchemaForm.Unqualified;
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
390this.elementFormDefault = XmlSchemaForm.Unqualified; 394this.attributeFormDefault = XmlSchemaForm.Unqualified;
System\Xml\Serialization\SoapReflectionImporter.cs (2)
574MemberMapping mapping = ImportMemberMapping(member, ns, xmlReflectionMembers, hasWrapperElement ? XmlSchemaForm.Unqualified : XmlSchemaForm.Qualified, limiter); 628ImportAccessorMapping(member, model, a, ns, XmlSchemaForm.Unqualified, limiter);
System\Xml\Serialization\SoapSchemaExporter.cs (2)
109schema.ElementFormDefault = elementFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : elementFormDefault; 262element.Form = XmlSchemaForm.Unqualified;
System\Xml\Serialization\XmlCodeExporter.cs (5)
603bool sameElementNs = arrayElement.Form == XmlSchemaForm.Unqualified || arrayElement.Namespace == ns; 605bool defaultForm = arrayElement.Form != XmlSchemaForm.Unqualified; 654bool defaultForm = element.Form != XmlSchemaForm.Unqualified; 687bool defaultForm = element.Form != XmlSchemaForm.Unqualified; 792if (form == XmlSchemaForm.Unqualified && ns != null && ns.Length == 0) {
System\Xml\Serialization\XmlReflectionImporter.cs (7)
1151XmlSchemaForm form = rpc ? XmlSchemaForm.Unqualified : XmlSchemaForm.Qualified; 1440element.Form = rpc ? XmlSchemaForm.Unqualified : xmlElement.Form == XmlSchemaForm.None ? elementFormDefault : xmlElement.Form; 1518arrayElement.Form = rpc ? XmlSchemaForm.Unqualified : a.XmlArray.Form == XmlSchemaForm.None ? elementFormDefault : a.XmlArray.Form; 1594element.Form = rpc ? XmlSchemaForm.Unqualified : xmlElement.Form == XmlSchemaForm.None ? elementFormDefault : xmlElement.Form; 1651element.Form = rpc ? XmlSchemaForm.Unqualified : xmlElement.Form == XmlSchemaForm.None ? elementFormDefault : xmlElement.Form; 1751if ((element.Form == XmlSchemaForm.Unqualified && string.IsNullOrEmpty(choiceNs)) || element.Namespace == choiceNs) { 1924if (isQualified && form == XmlSchemaForm.Unqualified) throw new InvalidOperationException(Res.GetString(Res.XmlInvalidFormUnqualified));
System\Xml\Serialization\XmlSchemaExporter.cs (5)
24internal const XmlSchemaForm attributeFormDefault = XmlSchemaForm.Unqualified; 265schema.ElementFormDefault = elementFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : elementFormDefault; 266schema.AttributeFormDefault = attributeFormDefault == XmlSchemaForm.Unqualified ? XmlSchemaForm.None : attributeFormDefault; 281if (e.Form == XmlSchemaForm.Unqualified) 287if (a.Form == XmlSchemaForm.Unqualified)
System\Xml\Serialization\XmlSchemaImporter.cs (6)
208accessor.Form = schema.ElementFormDefault == XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.ElementFormDefault; 1809return schema.ElementFormDefault == XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.ElementFormDefault; 1813return element.QualifiedName.Namespace == null || element.QualifiedName.Namespace.Length == 0 ? XmlSchemaForm.Unqualified : XmlSchemaForm.Qualified; 1866return schema.AttributeFormDefault == XmlSchemaForm.None ? XmlSchemaForm.Unqualified : schema.AttributeFormDefault; 1870return attribute.QualifiedName.Namespace == null || attribute.QualifiedName.Namespace.Length == 0 ? XmlSchemaForm.Unqualified : XmlSchemaForm.Qualified; 1873return XmlSchemaForm.Unqualified;
System\Xml\Serialization\XmlSerializationWriter.cs (1)
3210if ((element.Form == XmlSchemaForm.Unqualified && string.IsNullOrEmpty(choiceNs)) || element.Namespace == choiceNs) {
System\Xml\Serialization\XmlSerializationWriterILGen.cs (1)
2191if ((element.Form == XmlSchemaForm.Unqualified && string.IsNullOrEmpty(choiceNs)) || element.Namespace == choiceNs) {