5 instantiations of ResXDataNode
System.Windows.Forms (5)
System\Resources\ResXDataNode.cs (1)
55
return new
ResXDataNode
()
System\Resources\ResXResourceReader.cs (1)
609
ResXDataNode dataNode =
new
(nodeInfo, BasePath);
System\Resources\ResXResourceWriter.cs (2)
350
ResXDataNode node =
new
(name, fileRef, _typeNameConverter);
358
ResXDataNode node =
new
(name, value, _typeNameConverter);
System\Resources\ResXSerializationBinder.cs (1)
32
/// constructors on <see cref="ResXDataNode"/> such as <see cref="
ResXDataNode
(string, object?, Func{Type?, string}?)"/>
15 references to ResXDataNode
System.Windows.Forms (8)
System\Resources\ResXDataNode.cs (1)
53
internal
ResXDataNode
DeepClone()
System\Resources\ResXResourceReader.cs (1)
609
ResXDataNode
dataNode = new(nodeInfo, BasePath);
System\Resources\ResXResourceWriter.cs (5)
285
if (value is
ResXDataNode
node)
303
public void AddResource(
ResXDataNode
node)
306
ResXDataNode
nodeClone = node.DeepClone();
350
ResXDataNode
node = new(name, fileRef, _typeNameConverter);
358
ResXDataNode
node = new(name, value, _typeNameConverter);
System\Resources\ResXSerializationBinder.cs (1)
32
/// constructors on <see cref="
ResXDataNode
"/> such as <see cref="ResXDataNode(string, object?, Func{Type?, string}?)"/>
System.Windows.Forms.Design (7)
System\Resources\Tools\StronglyTypedResourceBuilder.cs (7)
97
/// <paramref name="resourceList"/> contains <see cref="
ResXDataNode
"/> values where the key does not
98
/// match <see cref="
ResXDataNode
.Name"/>.
150
/// <paramref name="resourceList"/> contains <see cref="
ResXDataNode
"/> values where the key does not
151
/// match <see cref="
ResXDataNode
.Name"/>.
169
if (entry.Value is
ResXDataNode
node)
277
ResXDataNode
node = (
ResXDataNode
)entry.Value!;