C# 클래스 Headless.BinaryPage

The BinaryPage class provides the binary response from a Browser request as an in-memory byte array.
This class stores the binary response from the server in memory. Care must be taken when using this class to load large amounts of binary data. Any data loaded from the server will remain in memory until the page instance is garbage collected.
상속: Page
파일 보기 프로젝트 열기: roryprimrose/Headless

공개 메소드들

메소드 설명
GetContent ( ) : byte[]

Gets the content of the page.

보호된 메소드들

메소드 설명
SetContent ( HttpContent content ) : void

메소드 상세

GetContent() 공개 메소드

Gets the content of the page.
public GetContent ( ) : byte[]
리턴 byte[]

SetContent() 보호된 메소드

/// The parameter is null. ///
protected SetContent ( HttpContent content ) : void
content System.Net.Http.HttpContent
리턴 void