6 writes to Value
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaExporter.cs (1)
439facet.Value = enumDataContract.Members[i].Name;
System.Private.Xml (5)
System\Xml\Schema\Preprocessor.cs (2)
445space_default.Value = "default"; 448space_preserve.Value = "preserve";
System\Xml\Schema\XsdBuilder.cs (1)
2124builder._facet!.Value = value;
System\Xml\Serialization\Types.cs (1)
527guidPattern.Value = "[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}";
System\Xml\Serialization\XmlSchemaExporter.cs (1)
1162enumeration.Value = constant.XmlName;
26 references to Value
System.Data.Common (10)
System\Data\SimpleType.cs (10)
94_length = Convert.ToInt32(facet.Value, null); 97_minLength = Convert.ToInt32(facet.Value, null); 100_maxLength = Convert.ToInt32(facet.Value, null); 103_pattern = facet.Value; 106_enumeration = !string.IsNullOrEmpty(_enumeration) ? _enumeration + " " + facet.Value : facet.Value; 109_minExclusive = facet.Value; 112_minInclusive = facet.Value; 115_maxExclusive = facet.Value; 118_maxInclusive = facet.Value;
System.Private.DataContractSerialization (2)
System\Runtime\Serialization\SchemaImporter.cs (2)
1209if (enumFacet.Value == null) 1216DataMember dataMember = new DataMember(Globals.SchemaMemberInfoPlaceholder) { Name = enumFacet.Value, Order = enumValue };
System.Private.Xml (14)
System\Xml\Schema\FacetChecker.cs (8)
159_regStr.Append(facet.Value); 166_regStr.Append(facet.Value); 183if (facet.Value == "preserve") 187else if (facet.Value == "replace") 191else if (facet.Value == "collapse") 197throw new XmlSchemaException(SR.Sch_InvalidWhiteSpace, facet.Value, facet); 666Exception? ex = datatype.TryParseValue(facet.Value!, nameTable, nsmgr, out typedValue); 900if (facet.Value == null)
System\Xml\Serialization\SchemaObjectWriter.cs (3)
37return string.Compare($"{f1.GetType().Name}:{f1.Value}", $"{f2.GetType().Name}:{f2.Value}", StringComparison.Ordinal); 719WriteAttribute("value", "", o.Value);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
1763XmlCustomFormatter.ToDefaultValue(enumeration.Value!, sourceTypeDesc.FormatterName!); 1766string constantName = CodeIdentifier.MakeValid(enumeration.Value!); 1768constant.XmlName = enumeration.Value;