C# Class SwfDotNet.IO.Tags.FlvBaseTagCollection

Flv Base Tag collection
Inheritance: System.Collections.CollectionBase
显示文件 Open project: bladecoding/SwfExport Class Usage Examples

Public Methods

Method Description
Add ( FlvBaseTag value ) : FlvBaseTag

Add a base tag

AddRange ( FlvBaseTag values ) : void

Add an array of base tag

Clear ( ) : void

Clear collection

Contains ( FlvBaseTag value ) : bool

Test if list contain a base tag

FlvBaseTagCollection ( ) : System

Creates a new FlvBaseTagCollection instance.

GetLastOne ( ) : FlvBaseTag

Gets the last BaseTag of the collection.

IndexOf ( FlvBaseTag value ) : int

Get index of a base tag

Insert ( int index, FlvBaseTag value ) : void

Insert a base tag at

Remove ( FlvBaseTag value ) : void

Remove a base tag

ToArray ( ) : SwfDotNet.IO.Tags.FlvBaseTag[]

Convert collection to array

this ( int index ) : FlvBaseTag

Access base tag list by index

Method Details

Add() public method

Add a base tag
public Add ( FlvBaseTag value ) : FlvBaseTag
value FlvBaseTag base tag to add
return FlvBaseTag

AddRange() public method

Add an array of base tag
public AddRange ( FlvBaseTag values ) : void
values FlvBaseTag base tag array
return void

Clear() public method

Clear collection
public Clear ( ) : void
return void

Contains() public method

Test if list contain a base tag
public Contains ( FlvBaseTag value ) : bool
value FlvBaseTag base tag
return bool

FlvBaseTagCollection() public method

Creates a new FlvBaseTagCollection instance.
public FlvBaseTagCollection ( ) : System
return System

GetLastOne() public method

Gets the last BaseTag of the collection.
public GetLastOne ( ) : FlvBaseTag
return FlvBaseTag

IndexOf() public method

Get index of a base tag
public IndexOf ( FlvBaseTag value ) : int
value FlvBaseTag base tag
return int

Insert() public method

Insert a base tag at
public Insert ( int index, FlvBaseTag value ) : void
index int index
value FlvBaseTag base tag
return void

Remove() public method

Remove a base tag
public Remove ( FlvBaseTag value ) : void
value FlvBaseTag
return void

ToArray() public method

Convert collection to array
public ToArray ( ) : SwfDotNet.IO.Tags.FlvBaseTag[]
return SwfDotNet.IO.Tags.FlvBaseTag[]

this() public method

Access base tag list by index
public this ( int index ) : FlvBaseTag
index int
return FlvBaseTag