C# Class LumiSoft.Net.Mime.HeaderFieldParameterCollection

Header field parameters collection.
Inheritance: IEnumerable
Afficher le fichier Open project: jeske/StepsDB-alpha Class Usage Examples

Méthodes publiques

Méthode Description
Add ( string parameterName, string parameterValue ) : void

Adds a new header field parameter with specified name and value to the end of the collection.

Clear ( ) : void

Clears the collection of all header field parameters.

Contains ( string parameterName ) : bool

Gets if collection contains specified parameter.

GetEnumerator ( ) : IEnumerator

Gets enumerator.

Remove ( string parameterName ) : void

Removes specified header field parameter from the collection.

this ( string parameterName ) : string

Gets or sets specified parameter value.

Private Methods

Méthode Description
HeaderFieldParameterCollection ( ParametizedHeaderField headerField ) : System

Default constructor.

Method Details

Add() public méthode

Adds a new header field parameter with specified name and value to the end of the collection.
public Add ( string parameterName, string parameterValue ) : void
parameterName string Parameter name.
parameterValue string Parameter value.
Résultat void

Clear() public méthode

Clears the collection of all header field parameters.
public Clear ( ) : void
Résultat void

Contains() public méthode

Gets if collection contains specified parameter.
public Contains ( string parameterName ) : bool
parameterName string Parameter name.
Résultat bool

GetEnumerator() public méthode

Gets enumerator.
public GetEnumerator ( ) : IEnumerator
Résultat IEnumerator

Remove() public méthode

Removes specified header field parameter from the collection.
public Remove ( string parameterName ) : void
parameterName string The name of the header field parameter to remove.
Résultat void

this() public méthode

Gets or sets specified parameter value.
public this ( string parameterName ) : string
parameterName string
Résultat string