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