C# Class Networking.IXPFile

Mostrar archivo Open project: Silveryard/SmartHome Class Usage Examples

Public Methods

Method Description
GetHeaderValue ( string header ) : string

Returns the value of a specific header

GetInfoValue ( string info ) : string

Returns the value of a specific info

IXPFile ( ) : System

Creates an new blank IXP File

IXPFile ( string source ) : System

Parses a an existing IXP File

PutHeader ( string header, string value ) : void

Puts a value in the header

PutInfo ( string header, string value ) : void

Puts a value in the body

Private Methods

Method Description
GetBodyInfoNameAttr ( XmlNode headerInfoNode ) : XmlAttribute
GetBodyInfoNode ( string name ) : XmlNode
GetBodyNode ( ) : XmlNode
GetHeaderInfoNameAttr ( XmlNode headerInfoNode ) : XmlAttribute
GetHeaderInfoNode ( string name ) : XmlNode
GetHeaderInfoValueAttr ( XmlNode headerInfoNode ) : XmlAttribute
GetHeaderNode ( ) : XmlNode
GetTargetNFunctionAttr ( ) : XmlAttribute
GetTargetNode ( ) : XmlNode

Method Details

GetHeaderValue() public method

Returns the value of a specific header
public GetHeaderValue ( string header ) : string
header string The header
return string

GetInfoValue() public method

Returns the value of a specific info
public GetInfoValue ( string info ) : string
info string The info
return string

IXPFile() public method

Creates an new blank IXP File
public IXPFile ( ) : System
return System

IXPFile() public method

Parses a an existing IXP File
public IXPFile ( string source ) : System
source string
return System

PutHeader() public method

Puts a value in the header
public PutHeader ( string header, string value ) : void
header string The header name
value string The header value
return void

PutInfo() public method

Puts a value in the body
public PutInfo ( string header, string value ) : void
header string The header
value string The body
return void