11 writes to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
23ValueData = ValueData,
System\Resources\ResXDataNode.cs (8)
223nodeInfo.ValueData = cultureInfo.Name; 229nodeInfo.ValueData = @string; 234nodeInfo.ValueData = ToBase64WrappedString(bytes); 254nodeInfo.ValueData = converter.ConvertToInvariantString(value) ?? string.Empty; 270nodeInfo.ValueData = data is null ? string.Empty : ToBase64WrappedString(data); 278nodeInfo.ValueData = string.Empty; 318nodeInfo.ValueData = ToBase64WrappedString(stream.ToArray()); 487_nodeInfo.ValueData = FileRef?.ToString() ?? string.Empty;
System\Resources\ResXResourceReader.cs (2)
570nodeInfo.ValueData = reader.Value.Trim(); 600nodeInfo.ValueData = reader.ReadString();
11 references to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
23ValueData = ValueData,
System\Resources\ResXDataNode.cs (6)
131string[] fileRefDetails = ResXFileRef.Converter.ParseResxFileRefString(_nodeInfo.ValueData); 360return FromBase64WrappedString(dataNodeInfo.ValueData); 372return converter.ConvertFromInvariantString(dataNodeInfo.ValueData); 405&& FromBase64WrappedString(dataNodeInfo.ValueData) is { } serializedData) 422byte[] serializedData = FromBase64WrappedString(dataNodeInfo.ValueData); 617else if (_nodeInfo?.ValueData is not null)
System\Resources\ResXResourceReader.cs (1)
610throw 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);