55 references to Value
dotnet-svcutil-lib (55)
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (27)
183if (!node.Value.Equals2("yes", false) && !node.Value.Equals2("no", false)) 198if (value != null && !node.Value.Equals2(value, checkLower)) 393_nsMgr.AddLangAttribute(attributeNode.Value.GetString()); 397string value = attributeNode.Value.GetString(); 857if (!_node.Value.IsWhitespace()) 1161if (_node.Value.TryReadChars(chars, offset, count, out actual)) 1194if (_node.Value.TryReadBase64(buffer, offset, count, out actual)) 1282return node.Value.TryGetByteArrayLength(out length); 1294byte[] value = node.Value.ToByteArray(); 1352while (_node.NodeType != XmlNodeType.Comment && _node.Value.TryReadBase64(buffer, offset, count, out actual)) 1489value = node.Value.GetString(); 1504bool value = node.Value.ToBoolean(); 1516Int64 value = node.Value.ToLong(); 1528Int32 value = node.Value.ToInt(); 1540DateTime value = node.Value.ToDateTime(); 1552double value = node.Value.ToDouble(); 1564float value = node.Value.ToSingle(); 1576decimal value = node.Value.ToDecimal(); 1588UniqueId value = node.Value.ToUniqueId(); 1600TimeSpan value = node.Value.ToTimeSpan(); 1612Guid value = node.Value.ToGuid(); 1624object obj = node.Value.ToObject(); 1637ulong value = _node.Value.ToULong(); 1717Type type = _node.Value.ToType(); 2166return this.Value.TryGetDictionaryString(out value); 2181return Value.GetString();
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBinaryReader.cs (16)
288if (!this.Node.Value.TryGetByteArrayLength(out totalLength)) 515ReadName(MoveToComment().Value); 518MoveToAtomicTextWithEndElement().Value.SetValue(ValueHandleType.Empty); 523MoveToAtomicTextWithEndElement().Value.SetValue(ValueHandleType.Zero); 528MoveToAtomicTextWithEndElement().Value.SetValue(ValueHandleType.One); 533MoveToAtomicTextWithEndElement().Value.SetValue(ValueHandleType.True); 538MoveToAtomicTextWithEndElement().Value.SetValue(ValueHandleType.False); 543MoveToAtomicTextWithEndElement().Value.SetValue(ReadUInt8() != 0 ? ValueHandleType.True : ValueHandleType.False); 638MoveToAtomicTextWithEndElement().Value.SetDictionaryValue(ReadDictionaryKey()); 677BufferReader.ReadQName(MoveToAtomicTextWithEndElement().Value); 683BufferReader.ReadValue(nodeType, MoveToComplexText().Value); 690if (!this.Node.Value.IsWhitespace()) 849textNode.Value.SetValue(type, offset, length); 899MoveToComplexText().Value.SetValue(ValueHandleType.UTF8, offset, actual); 964MoveToComplexText().Value.SetValue(ValueHandleType.Unicode, offset, actual); 1013BufferReader.ReadValue(nodeType, textNode.Value);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlUTF8TextReader.cs (12)
671declarationNode.Value.SetValue(ValueHandleType.UTF8, valueOffset, valueLength); 859attributeNode.Value.SetValue((escaped ? ValueHandleType.EscapedUTF8 : ValueHandleType.UTF8), valueOffset, valueLength); 867attributeNode.Value.SetValue((escaped ? ValueHandleType.EscapedUTF8 : ValueHandleType.UTF8), valueOffset, valueLength); 1061MoveToComment().Value.SetValue(ValueHandleType.UTF8, commentOffset, commentLength); 1103MoveToCData().Value.SetValue(ValueHandleType.UTF8, cdataOffset, cdataLength); 1143MoveToWhitespaceText().Value.SetValue(ValueHandleType.UTF8, offset, length); 1290MoveToAtomicText().Value.SetValue(ValueHandleType.UTF8, offset, length); 1294MoveToComplexText().Value.SetValue(ValueHandleType.UTF8, offset, length); 1302MoveToWhitespaceText().Value.SetCharValue(ch); 1304MoveToComplexText().Value.SetCharValue(ch); 1382MoveToComplexText().Value.SetCharValue('\n'); 1396MoveToComplexText().Value.SetCharValue(']'); // Need to get past the ']' and keep going.