Example #1
0
 /// <inheritdoc/>
 public RequestContext(RequestContextSettings settings, IRequestContextHandler requestContextHandler)
 {
     requestContext = new CefSharp.Core.RequestContext(settings.settings, requestContextHandler);
 }
Example #2
0
 /// <inheritdoc/>
 public RequestContext(RequestContextSettings settings)
 {
     requestContext = new CefSharp.Core.RequestContext(settings.settings);
 }
Example #3
0
 /// <inheritdoc/>
 public RequestContext(IRequestContextHandler requestContextHandler)
 {
     requestContext = new CefSharp.Core.RequestContext(requestContextHandler);
 }
Example #4
0
 /// <inheritdoc/>
 public RequestContext(IRequestContext otherRequestContext, IRequestContextHandler requestContextHandler)
 {
     requestContext = new CefSharp.Core.RequestContext(otherRequestContext, requestContextHandler);
 }
Example #5
0
 /// <inheritdoc/>
 public RequestContext(IRequestContext otherRequestContext)
 {
     requestContext = new CefSharp.Core.RequestContext(otherRequestContext);
 }
Example #6
0
 /// <inheritdoc/>
 public RequestContext()
 {
     requestContext = new CefSharp.Core.RequestContext();
 }