C# Class ApiCore.XmlUtils

Datei anzeigen Open project: nolka/vkdotnet

Public Methods

Method Description
Bool ( string nodeName ) : bool

Gets the bool value from node

BoolVal ( ) : bool
Double ( string nodeName ) : double

Gets double value from node

Float ( string nodeName ) : float

Gets float value from node

Int ( string nodeName ) : int

Gets the int value from node

IntVal ( ) : int
String ( string nodeName ) : string

Gets the string value from node

UseNode ( XmlNode node ) : void

Set active node

Method Details

Bool() public static method

Gets the bool value from node
public static Bool ( string nodeName ) : bool
nodeName string node
return bool

BoolVal() public static method

public static BoolVal ( ) : bool
return bool

Double() public static method

Gets double value from node
public static Double ( string nodeName ) : double
nodeName string node
return double

Float() public static method

Gets float value from node
public static Float ( string nodeName ) : float
nodeName string node
return float

Int() public static method

Gets the int value from node
public static Int ( string nodeName ) : int
nodeName string node
return int

IntVal() public static method

public static IntVal ( ) : int
return int

String() public static method

Gets the string value from node
public static String ( string nodeName ) : string
nodeName string node
return string

UseNode() public static method

Set active node
public static UseNode ( XmlNode node ) : void
node System.Xml.XmlNode node to be used as active
return void