11 writes to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
20
ValueData
= ValueData,
System\Resources\ResXDataNode.cs (8)
222
nodeInfo.
ValueData
= cultureInfo.Name;
228
nodeInfo.
ValueData
= @string;
233
nodeInfo.
ValueData
= ToBase64WrappedString(bytes);
253
nodeInfo.
ValueData
= converter.ConvertToInvariantString(value) ?? string.Empty;
269
nodeInfo.
ValueData
= data is null ? string.Empty : ToBase64WrappedString(data);
277
nodeInfo.
ValueData
= string.Empty;
317
nodeInfo.
ValueData
= ToBase64WrappedString(stream.ToArray());
490
_nodeInfo.
ValueData
= FileRef?.ToString() ?? string.Empty;
System\Resources\ResXResourceReader.cs (2)
569
nodeInfo.
ValueData
= reader.Value.Trim();
599
nodeInfo.
ValueData
= reader.ReadString();
11 references to ValueData
System.Windows.Forms (11)
System\Resources\DataNodeInfo.cs (1)
20
ValueData =
ValueData
,
System\Resources\ResXDataNode.cs (6)
130
string[] fileRefDetails = ResXFileRef.Converter.ParseResxFileRefString(_nodeInfo.
ValueData
);
359
return FromBase64WrappedString(dataNodeInfo.
ValueData
);
371
return converter.ConvertFromInvariantString(dataNodeInfo.
ValueData
);
404
&& FromBase64WrappedString(dataNodeInfo.
ValueData
) is { } serializedData)
421
byte[] serializedData = FromBase64WrappedString(dataNodeInfo.
ValueData
);
620
else if (_nodeInfo?.
ValueData
is not null)
System\Resources\ResXResourceReader.cs (1)
609
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);