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)
25
get =>
_contents
is null ? throw new KeyNotFoundException() :
_contents
[key];
29
_contents
[key] = value;
41
if (
_contents
is null)
48
return
_contents
.TryGetValue(key, out value);
59
return
_contents
?.Remove(key) ?? false;