Click or drag to resize

ResourceHandler Class

Version 102.0.100
Legacy ResourceHandler, will be removed when CEF removes the old code path for it's CefResourceHandler implementation. This is the older and well tested variant. It doesn't however support range request headers (seek).
Inheritance Hierarchy
SystemObject
  CefSharp.LagacyResourceHandler

Namespace:  CefSharp.Lagacy
Assembly:  CefSharp (in CefSharp.dll) Version: 102.0.100.0 (102.0.100.0)
Syntax
public class ResourceHandler : IResourceHandler, 
	IDisposable

The ResourceHandler type exposes the following members.

Constructors
  NameDescription
Public methodResourceHandler
Initializes a new instance of the ResourceHandler class.
Top
Properties
  NameDescription
Public propertyAutoDisposeStream
When true the Stream will be Disposed when this instance is Disposed. The default value for this property is false.
Public propertyCharset
Gets or sets the Charset
Public propertyErrorCode
If the ErrorCode is set then the response will be ignored and the errorCode returned.
Public propertyHeaders
Gets or sets the headers.
Public propertyMimeType
Gets or sets the Mime Type.
Public propertyResponseLength
Gets or sets ResponseLength, when you know the size of your Stream (Response) set this property. This is optional. If you use a MemoryStream and don't provide a value here then it will be cast and it's size used
Public propertyStatusCode
Gets or sets the http status code.
Public propertyStatusText
Gets or sets the status text.
Public propertyStream
Gets or sets the resource stream.
Top
Methods
  NameDescription
Protected methodCancel
Called if the request is cancelled
Protected methodDispose
Dispose of resources here
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodGetResponse
Populate the response stream, response length. When this method is called the response should be fully populated with data. It is possible to redirect to another url at this point in time. NOTE: It's no longer manditory to implement this method, you can simply populate the properties of this instance and they will be set by the default implementation.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodProcessRequestAsync
Begin processing the request. If you have the data in memory you can execute the callback immediately and return true. For Async processing you would typically spawn a Task to perform processing, then return true. When the processing is complete execute callback.Continue(); In your processing Task, simply set the StatusCode, StatusText, MimeType, ResponseLength and Stream
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also