Click or drag to resize

ResourceHandlerFromStream Method

Version 94.4.20
Gets the resource from a stream.

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public static ResourceHandler FromStream(
	Stream stream,
	string mimeType = "text/html",
	bool autoDisposeStream = false,
	string charSet = null
)

Parameters

stream
Type: System.IOStream
A stream of the resource.
mimeType (Optional)
Type: SystemString
Type of MIME.
autoDisposeStream (Optional)
Type: SystemBoolean
Dispose of the stream when finished with (you will only be able to serve one request).
charSet (Optional)
Type: SystemString
response charset

Return Value

Type: ResourceHandler
ResourceHandler.
See Also