1 write to Inner
Microsoft.AspNetCore.Owin (1)
DictionaryStringArrayWrapper.cs (1)
15
Inner
= inner;
18 references to Inner
Microsoft.AspNetCore.Owin (18)
DictionaryStringArrayWrapper.cs (17)
28
get { return ((IDictionary<string, StringValues>)
Inner
)[key]; }
29
set {
Inner
[key] = value; }
32
int ICollection<KeyValuePair<string, string[]>>.Count =>
Inner
.Count;
34
bool ICollection<KeyValuePair<string, string[]>>.IsReadOnly =>
Inner
.IsReadOnly;
36
ICollection<string> IDictionary<string, string[]>.Keys =>
Inner
.Keys;
38
ICollection<string[]> IDictionary<string, string[]>.Values =>
Inner
.Values.Select(Convert).ToList();
40
void ICollection<KeyValuePair<string, string[]>>.Add(KeyValuePair<string, string[]> item) =>
Inner
.Add(Convert(item));
42
void IDictionary<string, string[]>.Add(string key, string[] value) =>
Inner
.Add(key, value);
44
void ICollection<KeyValuePair<string, string[]>>.Clear() =>
Inner
.Clear();
46
bool ICollection<KeyValuePair<string, string[]>>.Contains(KeyValuePair<string, string[]> item) =>
Inner
.Contains(Convert(item));
48
bool IDictionary<string, string[]>.ContainsKey(string key) =>
Inner
.ContainsKey(key);
52
foreach (var kv in
Inner
)
58
IEnumerator IEnumerable.GetEnumerator() =>
Inner
.Select(Convert).GetEnumerator();
60
IEnumerator<KeyValuePair<string, string[]>> IEnumerable<KeyValuePair<string, string[]>>.GetEnumerator() =>
Inner
.Select(Convert).GetEnumerator();
62
bool ICollection<KeyValuePair<string, string[]>>.Remove(KeyValuePair<string, string[]> item) =>
Inner
.Remove(Convert(item));
64
bool IDictionary<string, string[]>.Remove(string key) =>
Inner
.Remove(key);
69
if (
Inner
.TryGetValue(key, out temp))
Utilities.cs (1)
51
return wrapper.
Inner
;