17 references to Required
dotnet-svcutil-lib (17)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (3)
333attributeReference.Use = XmlSchemaUse.Required; 392attributeReference.Use = XmlSchemaUse.Required; 442xsa.Use = XmlSchemaUse.Required;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
2172case XmlSchemaUse.Required:
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (7)
2251else if (attributeBase.Use == XmlSchemaUse.Required && (attribute.Use != XmlSchemaUse.Required)) 2319else if (attributeBase.Use == XmlSchemaUse.Required && attribute.Use != XmlSchemaUse.Required) 2336else if (attributeBase.Use == XmlSchemaUse.Required) 2589if (xa.Use == XmlSchemaUse.Required) 2619case XmlSchemaUse.Required:
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
737case XmlSchemaUse.@Required: s = @"required"; break;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
770attribute.Use = XmlSchemaUse.Required;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (1)
1739accessor.IsOptional = attribute.Use != XmlSchemaUse.Required;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (1)
1394if (attribute.RefName.IsEmpty || attribute.RefName.Namespace != Globals.SerializationNamespace || attribute.Use == XmlSchemaUse.Required)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
4143case Microsoft.Xml.Schema.XmlSchemaUse.@Required: s = @"required"; break; 10747case @"required": return Microsoft.Xml.Schema.XmlSchemaUse.@Required;