Click or drag to resize

ResourceHandlerFromFilePath Method

Version 94.4.20
Gets the resource from the file path specified. Use the Cef.GetMimeType() helper method to lookup the mimeType if required. Uses CefStreamResourceHandler for reading the data

Namespace:  CefSharp
Assembly:  CefSharp (in CefSharp.dll) Version: 94.4.20.0 (94.4.20.0)
Syntax
public static IResourceHandler FromFilePath(
	string filePath,
	string mimeType = null,
	bool autoDisposeStream = false
)

Parameters

filePath
Type: SystemString
Location of the file.
mimeType (Optional)
Type: SystemString
The mimeType if null then text/html is used.
autoDisposeStream (Optional)
Type: SystemBoolean
Dispose of the stream when finished with (you will only be able to serve one request).

Return Value

Type: IResourceHandler
IResourceHandler.
See Also