5 instantiations of ResXDataNode
System.Windows.Forms (5)
System\Resources\ResXDataNode.cs (1)
55return new ResXDataNode()
System\Resources\ResXResourceReader.cs (1)
609ResXDataNode dataNode = new(nodeInfo, BasePath);
System\Resources\ResXResourceWriter.cs (2)
350ResXDataNode node = new(name, fileRef, _typeNameConverter); 358ResXDataNode 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)
53internal ResXDataNode DeepClone()
System\Resources\ResXResourceReader.cs (1)
609ResXDataNode dataNode = new(nodeInfo, BasePath);
System\Resources\ResXResourceWriter.cs (5)
285if (value is ResXDataNode node) 303public void AddResource(ResXDataNode node) 306ResXDataNode nodeClone = node.DeepClone(); 350ResXDataNode node = new(name, fileRef, _typeNameConverter); 358ResXDataNode 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"/>. 169if (entry.Value is ResXDataNode node) 277ResXDataNode node = (ResXDataNode)entry.Value!;