ReadableStringCollection Class
Accessors for query, forms, etc.
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Inheritance Hierarchy
System.Object
Microsoft.Owin.ReadableStringCollection
Microsoft.Owin.FormCollection
Syntax
public class ReadableStringCollection : IReadableStringCollection,
IEnumerable<KeyValuePair<string, string[]>>, IEnumerable
public ref class ReadableStringCollection : IReadableStringCollection,
IEnumerable<KeyValuePair<String^, array<String^>^>>, IEnumerable
type ReadableStringCollection =
class
interface IReadableStringCollection
interface IEnumerable<KeyValuePair<string, string[]>>
interface IEnumerable
end
Public Class ReadableStringCollection
Implements IReadableStringCollection, IEnumerable(Of KeyValuePair(Of String, String())),
IEnumerable
Constructors
Name | Description | |
---|---|---|
ReadableStringCollection(IDictionary<String, String[]>) | Create a new wrapper |
Properties
Name | Description | |
---|---|---|
Item[String] | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
Finalize() | (Inherited from Object.) |
|
Get(String) | Get the associated value from the collection. Multiple values will be merged. Returns null if the key is not present. |
|
GetEnumerator() | ||
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
GetValues(String) | Get the associated values from the collection in their original format. Returns null if the key is not present. |
|
MemberwiseClone() | (Inherited from Object.) |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
IEnumerable.GetEnumerator() |
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Return to top