Class NameValuePair
Inheritance
System.Object
NameValuePair
Namespace: MediaBrowser.Model.Dto
Assembly: MediaBrowser.Model.dll
Syntax
public class NameValuePair
Constructors
NameValuePair()
Declaration
public NameValuePair()
NameValuePair(String, String)
Declaration
public NameValuePair(string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | |
System.String | value |
Properties
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Value
Gets or sets the value.
Declaration
public string Value { get; set; }
Property Value
Type | Description |
---|---|
System.String | The value. |
Methods
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A string that represents the current object. |
Overrides
System.Object.ToString()