C# 클래스 System.Web.HttpResponse

파일 보기 프로젝트 열기: kumpera/mono 1 사용 예제들

Private Properties

프로퍼티 타입 설명
AddCacheDependency void
AddCacheItemDependencies void
AddCacheItemDependencies void
AddCacheItemDependency void
AddHeadersNoCache void
AppendToLog void
BinaryWrite void
DoFilter void
Flush void
GetCachedResponse System.Web.Caching.CachedRawResponse
GetNormalizedFileName string
GetOutputByteCount int
HttpResponse System.Text
HttpResponse System.Text
IsFileSystemDirSeparator bool
Redirect void
RedirectToRoute void
ReleaseResources void
SetAppPathModifier void
SetCachedHeaders void
SetTextWriter System.IO.TextWriter
TransmitFile void
TransmitFile void
TransmitFile void
WriteFile void
WriteHeaders void

공개 메소드들

메소드 설명
AddFileDependencies ( ArrayList filenames ) : void
AddFileDependencies ( string filenames ) : void
AddFileDependency ( string filename ) : void
AddHeader ( string name, string value ) : void
AppendCookie ( System.Web.HttpCookie cookie ) : void
AppendHeader ( string name, string value ) : void
ApplyAppPathModifier ( string virtualPath ) : string
BinaryWrite ( byte buffer ) : void
Clear ( ) : void
ClearContent ( ) : void
ClearHeaders ( ) : void
Close ( ) : void
DisableKernelCache ( ) : void
End ( ) : void
Flush ( ) : void
HttpResponse ( TextWriter writer ) : System.Text
Pics ( string value ) : void
Redirect ( string url ) : void
Redirect ( string url, bool endResponse ) : void
RedirectPermanent ( string url ) : void
RedirectPermanent ( string url, bool endResponse ) : void
RedirectToRoute ( RouteValueDictionary routeValues ) : void
RedirectToRoute ( object routeValues ) : void
RedirectToRoute ( string routeName ) : void
RedirectToRoute ( string routeName, RouteValueDictionary routeValues ) : void
RedirectToRoute ( string routeName, object routeValues ) : void
RedirectToRoutePermanent ( RouteValueDictionary routeValues ) : void
RedirectToRoutePermanent ( object routeValues ) : void
RedirectToRoutePermanent ( string routeName ) : void
RedirectToRoutePermanent ( string routeName, RouteValueDictionary routeValues ) : void
RedirectToRoutePermanent ( string routeName, object routeValues ) : void
RemoveOutputCacheItem ( string path ) : void
RemoveOutputCacheItem ( string path, string providerName ) : void
SetCookie ( System.Web.HttpCookie cookie ) : void
TransmitFile ( string filename ) : void
TransmitFile ( string filename, long offset, long length ) : void
Write ( char ch ) : void
Write ( char buffer, int index, int count ) : void
Write ( object obj ) : void
Write ( string s ) : void
WriteFile ( IntPtr fileHandle, long offset, long size ) : void
WriteFile ( string filename ) : void
WriteFile ( string filename, bool readIntoMemory ) : void
WriteFile ( string filename, long offset, long size ) : void
WriteSubstitution ( HttpResponseSubstitutionCallback callback ) : void

비공개 메소드들

메소드 설명
AddCacheDependency ( System.Web.Caching.CacheDependency dependencies ) : void
AddCacheItemDependencies ( ArrayList cacheKeys ) : void
AddCacheItemDependencies ( string cacheKeys ) : void
AddCacheItemDependency ( string cacheKey ) : void
AddHeadersNoCache ( NameValueCollection write_headers, bool final_flush ) : void
AppendToLog ( string param ) : void
BinaryWrite ( byte buffer, int start, int len ) : void
DoFilter ( bool close ) : void
Flush ( bool final_flush ) : void
GetCachedResponse ( ) : System.Web.Caching.CachedRawResponse
GetNormalizedFileName ( string fn ) : string
GetOutputByteCount ( ) : int
HttpResponse ( ) : System.Text
HttpResponse ( System.Web.HttpWorkerRequest worker_request, HttpContext context ) : System.Text
IsFileSystemDirSeparator ( char ch ) : bool
Redirect ( string url, bool endResponse, int code ) : void
RedirectToRoute ( string callerName, string routeName, RouteValueDictionary routeValues, int redirectCode, bool endResponse ) : void
ReleaseResources ( ) : void
SetAppPathModifier ( string app_modifier ) : void
SetCachedHeaders ( NameValueCollection headers ) : void
SetTextWriter ( TextWriter writer ) : TextWriter
TransmitFile ( System.Web.Hosting.VirtualFile vf ) : void
TransmitFile ( System.Web.Hosting.VirtualFile vf, bool final_flush ) : void
TransmitFile ( string filename, bool final_flush ) : void
WriteFile ( FileStream fs, long offset, long size ) : void
WriteHeaders ( bool final_flush ) : void

메소드 상세

AddFileDependencies() 공개 메소드

public AddFileDependencies ( ArrayList filenames ) : void
filenames System.Collections.ArrayList
리턴 void

AddFileDependencies() 공개 메소드

public AddFileDependencies ( string filenames ) : void
filenames string
리턴 void

AddFileDependency() 공개 메소드

public AddFileDependency ( string filename ) : void
filename string
리턴 void

AddHeader() 공개 메소드

public AddHeader ( string name, string value ) : void
name string
value string
리턴 void

AppendCookie() 공개 메소드

public AppendCookie ( System.Web.HttpCookie cookie ) : void
cookie System.Web.HttpCookie
리턴 void

AppendHeader() 공개 메소드

public AppendHeader ( string name, string value ) : void
name string
value string
리턴 void

ApplyAppPathModifier() 공개 메소드

public ApplyAppPathModifier ( string virtualPath ) : string
virtualPath string
리턴 string

BinaryWrite() 공개 메소드

public BinaryWrite ( byte buffer ) : void
buffer byte
리턴 void

Clear() 공개 메소드

public Clear ( ) : void
리턴 void

ClearContent() 공개 메소드

public ClearContent ( ) : void
리턴 void

ClearHeaders() 공개 메소드

public ClearHeaders ( ) : void
리턴 void

Close() 공개 메소드

public Close ( ) : void
리턴 void

DisableKernelCache() 공개 메소드

public DisableKernelCache ( ) : void
리턴 void

End() 공개 메소드

public End ( ) : void
리턴 void

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

HttpResponse() 공개 메소드

public HttpResponse ( TextWriter writer ) : System.Text
writer System.IO.TextWriter
리턴 System.Text

Pics() 공개 메소드

public Pics ( string value ) : void
value string
리턴 void

Redirect() 공개 메소드

public Redirect ( string url ) : void
url string
리턴 void

Redirect() 공개 메소드

public Redirect ( string url, bool endResponse ) : void
url string
endResponse bool
리턴 void

RedirectPermanent() 공개 메소드

public RedirectPermanent ( string url ) : void
url string
리턴 void

RedirectPermanent() 공개 메소드

public RedirectPermanent ( string url, bool endResponse ) : void
url string
endResponse bool
리턴 void

RedirectToRoute() 공개 메소드

public RedirectToRoute ( RouteValueDictionary routeValues ) : void
routeValues RouteValueDictionary
리턴 void

RedirectToRoute() 공개 메소드

public RedirectToRoute ( object routeValues ) : void
routeValues object
리턴 void

RedirectToRoute() 공개 메소드

public RedirectToRoute ( string routeName ) : void
routeName string
리턴 void

RedirectToRoute() 공개 메소드

public RedirectToRoute ( string routeName, RouteValueDictionary routeValues ) : void
routeName string
routeValues RouteValueDictionary
리턴 void

RedirectToRoute() 공개 메소드

public RedirectToRoute ( string routeName, object routeValues ) : void
routeName string
routeValues object
리턴 void

RedirectToRoutePermanent() 공개 메소드

public RedirectToRoutePermanent ( RouteValueDictionary routeValues ) : void
routeValues RouteValueDictionary
리턴 void

RedirectToRoutePermanent() 공개 메소드

public RedirectToRoutePermanent ( object routeValues ) : void
routeValues object
리턴 void

RedirectToRoutePermanent() 공개 메소드

public RedirectToRoutePermanent ( string routeName ) : void
routeName string
리턴 void

RedirectToRoutePermanent() 공개 메소드

public RedirectToRoutePermanent ( string routeName, RouteValueDictionary routeValues ) : void
routeName string
routeValues RouteValueDictionary
리턴 void

RedirectToRoutePermanent() 공개 메소드

public RedirectToRoutePermanent ( string routeName, object routeValues ) : void
routeName string
routeValues object
리턴 void

RemoveOutputCacheItem() 공개 정적인 메소드

public static RemoveOutputCacheItem ( string path ) : void
path string
리턴 void

RemoveOutputCacheItem() 공개 정적인 메소드

public static RemoveOutputCacheItem ( string path, string providerName ) : void
path string
providerName string
리턴 void

SetCookie() 공개 메소드

public SetCookie ( System.Web.HttpCookie cookie ) : void
cookie System.Web.HttpCookie
리턴 void

TransmitFile() 공개 메소드

public TransmitFile ( string filename ) : void
filename string
리턴 void

TransmitFile() 공개 메소드

public TransmitFile ( string filename, long offset, long length ) : void
filename string
offset long
length long
리턴 void

Write() 공개 메소드

public Write ( char ch ) : void
ch char
리턴 void

Write() 공개 메소드

public Write ( char buffer, int index, int count ) : void
buffer char
index int
count int
리턴 void

Write() 공개 메소드

public Write ( object obj ) : void
obj object
리턴 void

Write() 공개 메소드

public Write ( string s ) : void
s string
리턴 void

WriteFile() 공개 메소드

public WriteFile ( IntPtr fileHandle, long offset, long size ) : void
fileHandle IntPtr
offset long
size long
리턴 void

WriteFile() 공개 메소드

public WriteFile ( string filename ) : void
filename string
리턴 void

WriteFile() 공개 메소드

public WriteFile ( string filename, bool readIntoMemory ) : void
filename string
readIntoMemory bool
리턴 void

WriteFile() 공개 메소드

public WriteFile ( string filename, long offset, long size ) : void
filename string
offset long
size long
리턴 void

WriteSubstitution() 공개 메소드

public WriteSubstitution ( HttpResponseSubstitutionCallback callback ) : void
callback HttpResponseSubstitutionCallback
리턴 void