C# 클래스 SwfDotNet.IO.Tags.EnableDebuggerTag

EnableDebuggerTag enables a movie to be debugged when played using the Flash authoring tool, allowing the variables defined in the arrays of actions specified in object to be inspected.

In order to use the debugger a password must be supplied. When encrypted using the MD5 algorithm it must match the value stored in the password attribute.

To encode a string with the MD5 encryption algorithm, you can use the EncryptPasswordToMD5 method of the EnableDebuggerTag class.

This tag was introduced in Flash 5.

상속: BaseTag
파일 보기 프로젝트 열기: bladecoding/SwfExport 1 사용 예제들

공개 메소드들

메소드 설명
EnableDebuggerTag ( ) : System

Creates a new EnableDebuggerTag instance.

EnableDebuggerTag ( string password ) : System

Creates a new EnableDebuggerTag instance.

EncryptPasswordToMD5 ( string originalPassword ) : void

Encrypts the password with MD5 algorithm.

ReadData ( byte version, BufferedBinaryReader binaryReader ) : void

see base class

Serialize ( XmlWriter writer ) : void

Serializes the specified writer.

UpdateData ( byte version ) : void

see base class

메소드 상세

EnableDebuggerTag() 공개 메소드

Creates a new EnableDebuggerTag instance.
public EnableDebuggerTag ( ) : System
리턴 System

EnableDebuggerTag() 공개 메소드

Creates a new EnableDebuggerTag instance.
public EnableDebuggerTag ( string password ) : System
password string Md5 encrypted password
리턴 System

EncryptPasswordToMD5() 공개 메소드

Encrypts the password with MD5 algorithm.
public EncryptPasswordToMD5 ( string originalPassword ) : void
originalPassword string Original password.
리턴 void

ReadData() 공개 메소드

see base class
public ReadData ( byte version, BufferedBinaryReader binaryReader ) : void
version byte
binaryReader SwfDotNet.IO.Utils.BufferedBinaryReader
리턴 void

Serialize() 공개 메소드

Serializes the specified writer.
public Serialize ( XmlWriter writer ) : void
writer System.Xml.XmlWriter Writer.
리턴 void

UpdateData() 공개 메소드

see base class
public UpdateData ( byte version ) : void
version byte
리턴 void