C# 클래스 SwfDotNet.IO.SwfWriter

SwfWriter provides the way to write a Swf to a file or a stream.
This class writes an swf to a stream using the Write method. Headers and the tags list of the swf are compiled as bytecode and writed in the stream.
파일 보기 프로젝트 열기: bladecoding/SwfExport 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void

Closes the opened writted stream

SwfWriter ( Stream stream ) : System

constructor.

SwfWriter ( string fileName ) : System

Creates a new SwfWriter instance.

Write ( Swf swf ) : void

Writes the (compressed or uncompressed) swf data to a stream. The stream gets flushed and closed afterwards.

메소드 상세

Close() 공개 메소드

Closes the opened writted stream
public Close ( ) : void
리턴 void

SwfWriter() 공개 메소드

constructor.
public SwfWriter ( Stream stream ) : System
stream Stream Stream, the swf shall be written to.
리턴 System

SwfWriter() 공개 메소드

Creates a new SwfWriter instance.
public SwfWriter ( string fileName ) : System
fileName string Name of the file where the swf shall be written to
리턴 System

Write() 공개 메소드

Writes the (compressed or uncompressed) swf data to a stream. The stream gets flushed and closed afterwards.
public Write ( Swf swf ) : void
swf Swf Swf
리턴 void