OwinEnvironment Class¶
- Namespace
Microsoft.AspNetCore.Owin
- Assemblies
- Microsoft.AspNetCore.Owin
Syntax¶
public class OwinEnvironment : IDictionary<string, object>, ICollection<KeyValuePair<string, object>>, IEnumerable<KeyValuePair<string, object>>, IEnumerable
-
class
Microsoft.AspNetCore.Owin.
OwinEnvironment
Constructors¶
-
OwinEnvironment
(Microsoft.AspNetCore.Http.HttpContext)¶ public OwinEnvironment(HttpContext context)
-
Properties¶
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
FeatureMaps
¶ Return type: System.Collections.Generic.IDictionary<System.String> public IDictionary<string, OwinEnvironment.FeatureMap> FeatureMaps { get; }
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
Count
¶ Return type: System.Int32 int ICollection<KeyValuePair<string, object>>.Count { get; }
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
IsReadOnly
¶ Return type: System.Boolean bool ICollection<KeyValuePair<string, object>>.IsReadOnly { get; }
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
Item[System.String]
¶ Return type: System.Object object IDictionary<string, object>.this[string key] { get; set; }
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
Keys
¶ Return type: System.Collections.Generic.ICollection<System.String> ICollection<string> IDictionary<string, object>.Keys { get; }
-
Microsoft.AspNetCore.Owin.OwinEnvironment.
Values
¶ Return type: System.Collections.Generic.ICollection<System.Object> ICollection<object> IDictionary<string, object>.Values { get; }
-
Methods¶
-
Add
(System.Collections.Generic.KeyValuePair<System.String, System.Object>)¶ void ICollection<KeyValuePair<string, object>>.Add(KeyValuePair<string, object> item)
-
Clear
()¶ void ICollection<KeyValuePair<string, object>>.Clear()
-
Contains
(System.Collections.Generic.KeyValuePair<System.String, System.Object>)¶ Return type: System.Boolean bool ICollection<KeyValuePair<string, object>>.Contains(KeyValuePair<string, object> item)
-
CopyTo
(System.Collections.Generic.KeyValuePair<System.String, System.Object>[], System.Int32)¶ void ICollection<KeyValuePair<string, object>>.CopyTo(KeyValuePair<string, object>[] array, int arrayIndex)
-
Remove
(System.Collections.Generic.KeyValuePair<System.String, System.Object>)¶ Return type: System.Boolean bool ICollection<KeyValuePair<string, object>>.Remove(KeyValuePair<string, object> item)
-
Add
(System.String, System.Object) void IDictionary<string, object>.Add(string key, object value)
-
ContainsKey
(System.String)¶ Return type: System.Boolean bool IDictionary<string, object>.ContainsKey(string key)
-
Remove
(System.String) Return type: System.Boolean bool IDictionary<string, object>.Remove(string key)
-
TryGetValue
(System.String, out System.Object)¶ Return type: System.Boolean bool IDictionary<string, object>.TryGetValue(string key, out object value)
-
GetEnumerator
()¶ Return type: System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String>> IEnumerator<KeyValuePair<string, object>> IEnumerable<KeyValuePair<string, object>>.GetEnumerator()
-
GetEnumerator
() Return type: System.Collections.IEnumerator IEnumerator IEnumerable.GetEnumerator()
-