6 writes to Value
System.Private.DataContractSerialization (1)
System\Runtime\Serialization\SchemaExporter.cs (1)
439
facet.
Value
= enumDataContract.Members[i].Name;
System.Private.Xml (5)
System\Xml\Schema\Preprocessor.cs (2)
445
space_default.
Value
= "default";
448
space_preserve.
Value
= "preserve";
System\Xml\Schema\XsdBuilder.cs (1)
2124
builder._facet!.
Value
= value;
System\Xml\Serialization\Types.cs (1)
527
guidPattern.
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)
1162
enumeration.
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)
1209
if (enumFacet.
Value
== null)
1216
DataMember 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
);
183
if (facet.
Value
== "preserve")
187
else if (facet.
Value
== "replace")
191
else if (facet.
Value
== "collapse")
197
throw new XmlSchemaException(SR.Sch_InvalidWhiteSpace, facet.
Value
, facet);
666
Exception? ex = datatype.TryParseValue(facet.
Value
!, nameTable, nsmgr, out typedValue);
900
if (facet.
Value
== null)
System\Xml\Serialization\SchemaObjectWriter.cs (3)
37
return string.Compare($"{f1.GetType().Name}:{f1.
Value
}", $"{f2.GetType().Name}:{f2.
Value
}", StringComparison.Ordinal);
719
WriteAttribute("value", "", o.
Value
);
System\Xml\Serialization\XmlSchemaImporter.cs (3)
1763
XmlCustomFormatter.ToDefaultValue(enumeration.
Value
!, sourceTypeDesc.FormatterName!);
1766
string constantName = CodeIdentifier.MakeValid(enumeration.
Value
!);
1768
constant.XmlName = enumeration.
Value
;