C# 클래스 Castle.MonoRail.Framework.TransformFilter

Abstract base class for HttpFilters.
상속: Stream, ITransformFilter
파일 보기 프로젝트 열기: nats/castle-1.0.3-mono

공개 메소드들

메소드 설명
Close ( ) : void

Close implementation.

Don't forget to call base.Close is you override this function.

Flush ( ) : void

Flushes the base stream

Read ( byte buffer, int offset, int count ) : int

This method is not supported for an HttpFilter

Seek ( long offset, SeekOrigin origin ) : long

This method is not supported for an HttpFilter

SetLength ( long value ) : void

This method is not supported for an HttpFilter

TransformFilter ( Stream baseStream ) : System

Base class holds the underlying stream.

메소드 상세

Close() 공개 메소드

Close implementation.
Don't forget to call base.Close is you override this function.
public Close ( ) : void
리턴 void

Flush() 공개 메소드

Flushes the base stream
public Flush ( ) : void
리턴 void

Read() 공개 메소드

This method is not supported for an HttpFilter
Always thrown
public Read ( byte buffer, int offset, int count ) : int
buffer byte
offset int
count int
리턴 int

Seek() 공개 메소드

This method is not supported for an HttpFilter
Always thrown
public Seek ( long offset, SeekOrigin origin ) : long
offset long
origin SeekOrigin
리턴 long

SetLength() 공개 메소드

This method is not supported for an HttpFilter
Always thrown
public SetLength ( long value ) : void
value long
리턴 void

TransformFilter() 공개 메소드

Base class holds the underlying stream.
public TransformFilter ( Stream baseStream ) : System
baseStream Stream The stream to write to after filtering.
리턴 System