Click or drag to resize

EngineFactoryCreateAsync Method

Asynchronously creates and returns an IEngine instance.

Namespace:  DotNetBrowser.Engine
Assembly:  DotNetBrowser.Core (in DotNetBrowser.Core.dll) Version: 2.23.3
Syntax
C#
public static Task<IEngine> CreateAsync()

Return Value

Type: TaskIEngine
A task which returns an initialized Chromium engine on completion. The task can throw EngineInitializationException if the IEngine initialization has failed for some reason.
Remarks
Calling this method is equivalent to calling the CreateAsync(EngineOptions) method with the EngineOptions built by calling new EngineOptions.Builder().Build().
See Also