3 writes to IsAbstract
System.Private.Xml (2)
System\Xml\Schema\XsdBuilder.cs (1)
1609
builder._complexType!.
IsAbstract
= builder.ParseBoolean(value, "abstract");
System\Xml\Serialization\XmlSchemaExporter.cs (1)
984
type.
IsAbstract
= mapping.TypeDesc.IsAbstract;
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
11260
o.
@IsAbstract
= Xml.XmlConvert.ToBoolean(Reader.Value);
12 references to IsAbstract
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
2840
if (ctNode.
IsAbstract
)
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaImporter.cs (1)
1347
if (type.
IsAbstract
)
System.Private.Xml (8)
System\Xml\Schema\SchemaCollectionCompiler.cs (3)
297
if (complexType == null || (!complexType.
IsAbstract
&& type != XmlSchemaComplexType.AnyType))
773
decl.IsAbstract = complexType.
IsAbstract
;
2277
decl.IsAbstract |= ct.
IsAbstract
;
System\Xml\Schema\SchemaSetCompiler.cs (2)
849
decl.IsAbstract = complexType.
IsAbstract
;
2736
decl.IsAbstract |= ct.
IsAbstract
;
System\Xml\Serialization\SchemaObjectWriter.cs (2)
807
if ((bool)o.
@IsAbstract
)
809
WriteAttribute(@"abstract", @"", XmlConvert.ToString((bool)(bool)o.
@IsAbstract
));
System\Xml\Serialization\XmlSchemaImporter.cs (1)
552
if (((XmlSchemaComplexType)type).
IsAbstract
)
System.Web.Services.Description (2)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (2)
3697
if (((global::System.Boolean)o.
@IsAbstract
) != false) {
3698
WriteAttribute(@"abstract", @"", Xml.XmlConvert.ToString((global::System.Boolean)((global::System.Boolean)o.
@IsAbstract
)));