System.Collections.Specialized.NameValueCollection.Get Method

Gets the values associated with the specified key from the System.Collections.Specialized.NameValueCollection combined into one comma-separated list.

Syntax

public virtual string Get (string name)

Parameters

name
The string key of the entry that contains the values to get. The key can be null.

Returns

A string that contains a comma-separated list of the values associated with the specified key from the System.Collections.Specialized.NameValueCollection, if found; otherwise, null.

Remarks

Note:

This method returns null in the following cases: 1) if the specified key is not found; and 2) if the specified key is found and its associated value is null. This method does not distinguish between the two cases.

This method is an O(n) operation, where n is the number of values associated with the specified key.

Requirements

Namespace: System.Collections.Specialized
Assembly: System (in System.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0