FormDataCollection.Item Property (String)

 

Gets values associated with a given key. If there are multiple values, they're concatenated.

Namespace:   System.Net.Http.Formatting
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

Syntax

public string this[
    string name
] { get; }
public:
property String^ default[
    String^ name
] {
    String^ get(String^ name);
}
member Item : 
        name:string -> string with get
Public ReadOnly Property Item (
    name As String
) As String

Parameters

Property Value

Type: System.String

Values associated with a given key. If there are multiple values, they're concatenated.

See Also

FormDataCollection Class
System.Net.Http.Formatting Namespace

Return to top