8 writes to IsNillable
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
1243
xse.
IsNillable
= true;
2416
newElement.
IsNillable
= copyElement.IsNillable;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1397
builder._element.
IsNillable
= builder.ParseBoolean(value, "nillable");
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
300
element.
IsNillable
= accessor.IsNullable || accessor.Mapping is NullableMapping;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
268
element.
IsNillable
= accessor.IsNullable;
862
element.
IsNillable
= accessor.IsNullable;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (1)
1743
element.
IsNillable
= true;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
10837
o.
@IsNillable
= Microsoft.Xml.XmlConvert.ToBoolean(Reader.Value);
26 references to IsNillable
dotnet-svcutil-lib (26)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
2414
if (copyElement.
IsNillable
)
2416
newElement.IsNillable = copyElement.
IsNillable
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionCompiler.cs (3)
1414
(derivedElement.
IsNillable
== baseElement.
IsNillable
) &&
2361
decl.IsNillable = xe.
IsNillable
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaSetCompiler.cs (3)
1652
(baseElement.
IsNillable
|| !derivedElement.
IsNillable
) &&
2793
decl.IsNillable = xe.
IsNillable
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (2)
1316
if (e1.
IsNillable
!= e2.
IsNillable
)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (2)
1000
if (o.
IsNillable
)
1002
WriteAttribute(@"nillable", @"", XmlConvert.ToString(o.
IsNillable
));
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (1)
183
accessor.IsNullable = element.
IsNillable
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (2)
359
accessor.IsNullable = element.
IsNillable
;
1357
arrayAccessor.IsNullable = element.
IsNillable
;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaHelper.cs (1)
117
isNullable = schemaElement.
IsNillable
;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (3)
365
xmlDataContract.IsTopLevelElementNullable = element.
IsNillable
;
972
bool memberIsNullable = element.
IsNillable
;
1071
dataContract.IsItemTypeNullable = element.
IsNillable
;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\XsdDataContractImporter.cs (1)
176
return codeExporter.GetElementTypeReference(dataContract, element.
IsNillable
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (2)
1578
if (!element.
IsNillable
&& !SchemaHelper.IsElementValueType(element))
1733
_dataContractSerializerOperationGenerator.Add(part, typeRef, knownTypeRefs, !element.
IsNillable
&& !IsValueType(typeName));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (2)
116
if (e1.
IsNillable
!= e2.
IsNillable
)
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (2)
2865
if (((global::System.Boolean)o.
@IsNillable
) != false)
2867
WriteAttribute(@"nillable", @"", Microsoft.Xml.XmlConvert.ToString((global::System.Boolean)((global::System.Boolean)o.
@IsNillable
)));