C# Class Recurity.Swf.AVM2.ABC.AbcFile

显示文件 Open project: rtezli/Blitzableiter Class Usage Examples

Public Methods

Method Description
IsValidIdentifier ( string name ) : bool

Checks if a string instance is a valid identifier.

Parse ( Stream source ) : void

Parses this object out of a stream

Verify ( ) : bool

Verifies this object and its components for documentation compliance.

VerifyMultinameIndex ( uint index ) : bool

VerifyNameIndex ( uint nindex ) : bool

Checks if a name can be found at specific position in the constant pool.

VerifyStringIndex ( uint sindex ) : bool

Write ( Stream destination ) : void

Writes this object back to a stream.

Method Details

IsValidIdentifier() public static method

Checks if a string instance is a valid identifier.
public static IsValidIdentifier ( string name ) : bool
name string The actual string
return bool

Parse() public method

Parses this object out of a stream
public Parse ( Stream source ) : void
source Stream The source stream.
return void

Verify() public method

Verifies this object and its components for documentation compliance.
public Verify ( ) : bool
return bool

VerifyMultinameIndex() public method

public VerifyMultinameIndex ( uint index ) : bool
index uint
return bool

VerifyNameIndex() public method

Checks if a name can be found at specific position in the constant pool.
public VerifyNameIndex ( uint nindex ) : bool
nindex uint The constant pool index
return bool

VerifyStringIndex() public method

public VerifyStringIndex ( uint sindex ) : bool
sindex uint
return bool

Write() public method

Writes this object back to a stream.
public Write ( Stream destination ) : void
destination Stream The stream to write to.
return void