11 writes to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
20ValueData = ValueData,
System\Resources\ResXDataNode.cs (8)
222nodeInfo.ValueData = cultureInfo.Name; 228nodeInfo.ValueData = @string; 233nodeInfo.ValueData = ToBase64WrappedString(bytes); 253nodeInfo.ValueData = converter.ConvertToInvariantString(value) ?? string.Empty; 269nodeInfo.ValueData = data is null ? string.Empty : ToBase64WrappedString(data); 277nodeInfo.ValueData = string.Empty; 317nodeInfo.ValueData = ToBase64WrappedString(stream.ToArray()); 490_nodeInfo.ValueData = FileRef?.ToString() ?? string.Empty;
System\Resources\ResXResourceReader.cs (2)
569nodeInfo.ValueData = reader.Value.Trim(); 599nodeInfo.ValueData = reader.ReadString();
11 references to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
20ValueData = ValueData,
System\Resources\ResXDataNode.cs (6)
130string[] fileRefDetails = ResXFileRef.Converter.ParseResxFileRefString(_nodeInfo.ValueData); 359return FromBase64WrappedString(dataNodeInfo.ValueData); 371return converter.ConvertFromInvariantString(dataNodeInfo.ValueData); 404&& FromBase64WrappedString(dataNodeInfo.ValueData) is { } serializedData) 421byte[] serializedData = FromBase64WrappedString(dataNodeInfo.ValueData); 620else if (_nodeInfo?.ValueData is not null)
System\Resources\ResXResourceReader.cs (1)
609throw new ArgumentException(string.Format(SR.InvalidResXResourceNoName, nodeInfo.ValueData));
System\Resources\ResXResourceWriter.cs (3)
319AddDataRow(DataStr, info.Name, info.ValueData, info.TypeName, info.MimeType, info.Comment); 352AddDataRow(elementName, info.Name, info.ValueData, info.TypeName, info.MimeType, info.Comment); 360AddDataRow(elementName, info.Name, info.ValueData, info.TypeName, info.MimeType, info.Comment);