| ResourceHandler Constructor  | 
Version 97.1.60  
    Namespace: 
   CefSharp.Lagacy
    Assembly:
   CefSharp (in CefSharp.dll) Version: 97.1.60.0 (97.1.60.0)
 Syntax
Syntaxpublic ResourceHandler(
	string mimeType = "text/html",
	Stream stream = null,
	bool autoDisposeStream = false,
	string charset = null
)
public:
ResourceHandler(
	String^ mimeType = L"text/html", 
	Stream^ stream = nullptr, 
	bool autoDisposeStream = false, 
	String^ charset = nullptr
)
Parameters
- mimeType (Optional)
- Type: SystemString
 Optional mimeType defaults to DefaultMimeType
- stream (Optional)
- Type: System.IOStream
 Optional Stream - must be set at some point to provide a valid response
- autoDisposeStream (Optional)
- Type: SystemBoolean
 When true the Stream will be disposed when this instance is Diposed, you will
            be unable to use this ResourceHandler after the Stream has been disposed
- charset (Optional)
- Type: SystemString
 response charset
 See Also
See Also