C# Class Skybound.Gecko.GeckoComment

Represents a DOM Comment
Inheritance: GeckoNode
显示文件 Open project: tophatmonocle/DirtyGecko Class Usage Examples

Public Methods

Method Description
AppendData ( string arg ) : void
DeleteData ( uint offset, uint count ) : void
GetData ( ) : string
GetLength ( ) : uint
InsertData ( uint offset, string arg ) : void
ReplaceData ( uint offset, uint count, string arg ) : void
SetData ( string data ) : void
SubstringData ( uint offset, uint count ) : string

Private Methods

Method Description
Create ( nsIDOMComment comment ) : GeckoComment
GeckoComment ( nsIDOMComment comment ) : System

Method Details

AppendData() public method

public AppendData ( string arg ) : void
arg string
return void

DeleteData() public method

public DeleteData ( uint offset, uint count ) : void
offset uint
count uint
return void

GetData() public method

public GetData ( ) : string
return string

GetLength() public method

public GetLength ( ) : uint
return uint

InsertData() public method

public InsertData ( uint offset, string arg ) : void
offset uint
arg string
return void

ReplaceData() public method

public ReplaceData ( uint offset, uint count, string arg ) : void
offset uint
count uint
arg string
return void

SetData() public method

public SetData ( string data ) : void
data string
return void

SubstringData() public method

public SubstringData ( uint offset, uint count ) : string
offset uint
count uint
return string