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