C# 클래스 LumiSoft.Net.Mime.HeaderFieldParameterCollection

Header field parameters collection.
상속: IEnumerable
파일 보기 프로젝트 열기: jeske/StepsDB-alpha 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
HeaderFieldParameterCollection ( ParametizedHeaderField headerField ) : System

Default constructor.

메소드 상세

Add() 공개 메소드

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.
리턴 void

Clear() 공개 메소드

Clears the collection of all header field parameters.
public Clear ( ) : void
리턴 void

Contains() 공개 메소드

Gets if collection contains specified parameter.
public Contains ( string parameterName ) : bool
parameterName string Parameter name.
리턴 bool

GetEnumerator() 공개 메소드

Gets enumerator.
public GetEnumerator ( ) : IEnumerator
리턴 IEnumerator

Remove() 공개 메소드

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

this() 공개 메소드

Gets or sets specified parameter value.
public this ( string parameterName ) : string
parameterName string
리턴 string