1 write to _contents
Microsoft.AspNetCore.Components.Forms (1)
EditContextProperties.cs (1)
28_contents ??= new Dictionary<object, object>();
6 references to _contents
Microsoft.AspNetCore.Components.Forms (6)
EditContextProperties.cs (6)
25get => _contents is null ? throw new KeyNotFoundException() : _contents[key]; 29_contents[key] = value; 41if (_contents is null) 48return _contents.TryGetValue(key, out value); 59return _contents?.Remove(key) ?? false;