11 writes to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
23
ValueData
= ValueData,
System\Resources\ResXDataNode.cs (8)
223
nodeInfo.
ValueData
= cultureInfo.Name;
229
nodeInfo.
ValueData
= @string;
234
nodeInfo.
ValueData
= ToBase64WrappedString(bytes);
254
nodeInfo.
ValueData
= converter.ConvertToInvariantString(value) ?? string.Empty;
270
nodeInfo.
ValueData
= data is null ? string.Empty : ToBase64WrappedString(data);
278
nodeInfo.
ValueData
= string.Empty;
318
nodeInfo.
ValueData
= ToBase64WrappedString(stream.ToArray());
491
_nodeInfo.
ValueData
= FileRef?.ToString() ?? string.Empty;
System\Resources\ResXResourceReader.cs (2)
570
nodeInfo.
ValueData
= reader.Value.Trim();
600
nodeInfo.
ValueData
= reader.ReadString();
11 references to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
23
ValueData =
ValueData
,
System\Resources\ResXDataNode.cs (6)
131
string[] fileRefDetails = ResXFileRef.Converter.ParseResxFileRefString(_nodeInfo.
ValueData
);
360
return FromBase64WrappedString(dataNodeInfo.
ValueData
);
372
return converter.ConvertFromInvariantString(dataNodeInfo.
ValueData
);
405
&& FromBase64WrappedString(dataNodeInfo.
ValueData
) is { } serializedData)
422
byte[] serializedData = FromBase64WrappedString(dataNodeInfo.
ValueData
);
621
else if (_nodeInfo?.
ValueData
is not null)
System\Resources\ResXResourceReader.cs (1)
610
throw new ArgumentException(string.Format(SR.InvalidResXResourceNoName, nodeInfo.
ValueData
));
System\Resources\ResXResourceWriter.cs (3)
319
AddDataRow(DataStr, info.Name, info.
ValueData
, info.TypeName, info.MimeType, info.Comment);
352
AddDataRow(elementName, info.Name, info.
ValueData
, info.TypeName, info.MimeType, info.Comment);
360
AddDataRow(elementName, info.Name, info.
ValueData
, info.TypeName, info.MimeType, info.Comment);