public GumboWrapper(string html, bool stopOnFirstError = false, int maxErrors = -1, int tabStopSize = 8) { _Options = new GumboOptions(); NativeMethods.gumbo_set_options_defaults(ref _Options); _Options.max_errors = maxErrors; _Options.stop_on_first_error = stopOnFirstError; _Html = NativeUtf8Helper.NativeUtf8FromString(html); _OutputPtr = NativeMethods.gumbo_parse(_Html); var output = (GumboOutput)Marshal.PtrToStructure(_OutputPtr, typeof(GumboOutput)); _GumboDocumentNode = output.GetDocument(); Errors = output.GetErrors(); var lazyFactory = new DisposalAwareLazyFactory(() => this._Disposed, typeof(GumboWrapper).Name); Document = new DocumentWrapper(_GumboDocumentNode, lazyFactory, AddElementWithId); }
public static extern void gumbo_set_options_defaults(ref GumboOptions options);
public static extern void gumbo_destroy_output(ref GumboOptions options, IntPtr output);
public static extern IntPtr gumbo_parse_with_options(ref GumboOptions options, IntPtr buffer, [MarshalAs(UnmanagedType.SysUInt)] uint buffer_length);