3 writes to _nodeInfo
System.Windows.Forms (3)
System\Resources\ResXDataNode.cs (3)
58_nodeInfo = _nodeInfo?.Clone(), 114_nodeInfo = nodeInfo; 474_nodeInfo = new()
26 references to _nodeInfo
System.Windows.Forms (26)
System\Resources\ResXDataNode.cs (26)
58_nodeInfo = _nodeInfo?.Clone(), 122if (!string.IsNullOrEmpty(_nodeInfo.TypeName)) 124nodeType = s_internalTypeResolver.GetType(_nodeInfo.TypeName, throwOnError: false, ignoreCase: true); 130string[] fileRefDetails = ResXFileRef.Converter.ParseResxFileRefString(_nodeInfo.ValueData); 149get => _comment ?? _nodeInfo?.Comment ?? string.Empty; 157Debug.Assert(_name is not null || _nodeInfo?.Name is not null); 158return _name ?? _nodeInfo?.Name ?? string.Empty; 467if (_nodeInfo is not null) 470_nodeInfo.Name = Name; 480_nodeInfo.Comment = Comment; 490_nodeInfo.ValueData = FileRef?.ToString() ?? string.Empty; 491_nodeInfo.MimeType = null; 492_nodeInfo.TypeName = MultitargetUtil.GetAssemblyQualifiedName(typeof(ResXFileRef), _typeNameConverter); 497FillDataNodeInfoFromObject(_nodeInfo, _value); 501return _nodeInfo; 512public Point GetNodePosition() => _nodeInfo?.ReaderPosition ?? default; 536else if (_nodeInfo is not null) 539typeName = _nodeInfo.TypeName; 548if (string.IsNullOrEmpty(_nodeInfo.MimeType)) 559Type? type = _nodeInfo.MimeType == ResXResourceWriter.BinSerializedObjectMimeType 560? GenerateObjectFromBinaryDataNodeInfo(_nodeInfo, typeResolver)?.GetType() 561: GenerateObjectFromDataNodeInfo(_nodeInfo, typeResolver)?.GetType(); 620else if (_nodeInfo?.ValueData is not null) 624return _nodeInfo.MimeType == ResXResourceWriter.BinSerializedObjectMimeType 625? GenerateObjectFromBinaryDataNodeInfo(_nodeInfo, typeResolver) 626: GenerateObjectFromDataNodeInfo(_nodeInfo, typeResolver);