15 references to None
dotnet-svcutil-lib (15)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (2)
1191
if (attribute.Use != XmlSchemaUse.
None
)
1253
if (attribute.DefaultValue != null && attribute.Use != XmlSchemaUse.Optional && attribute.Use != XmlSchemaUse.
None
)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (1)
2168
case XmlSchemaUse.
None
:
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (2)
840
if (attribute.Use != XmlSchemaUse.
None
)
900
if (attribute.DefaultValue != null && attribute.Use != XmlSchemaUse.Optional && attribute.Use != XmlSchemaUse.
None
)
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (2)
2375
if (attribute.Use == XmlSchemaUse.Optional || attribute.Use == XmlSchemaUse.
None
)
2615
case XmlSchemaUse.
None
:
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAttribute.cs (2)
26
private XmlSchemaUse _use = XmlSchemaUse.
None
;
120
[XmlAttribute("use"), DefaultValue(XmlSchemaUse.
None
)]
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (1)
327
XmlSchemaUse use = o.Use == XmlSchemaUse.
None
? XmlSchemaUse.Optional : o.Use;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (3)
767
attribute.Use = XmlSchemaUse.
None
;
790
attribute.Use = XmlSchemaUse.
None
;
796
refAttribute.Use = XmlSchemaUse.
None
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (1)
1586
if ((attribute.Use == XmlSchemaUse.Optional || attribute.Use == XmlSchemaUse.
None
) && member.TypeDesc.IsValueType && !attribute.HasDefault && !member.TypeDesc.HasIsEmpty)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
4127
if (((Microsoft.Xml.Schema.XmlSchemaUse)o.@Use) != Microsoft.Xml.Schema.XmlSchemaUse.
@None
)