/// <summary> /// Parses the string and returns the result. /// </summary> public IXmlDocument Parse(String source) { var document = CreateDocument(source); var parser = new XmlDomBuilder(document); parser.Parse(_options); return(document); }
/// <summary> /// Parses the stream asynchronously with option to cancel. /// </summary> public async Task <IXmlDocument> ParseAsync(Stream source, CancellationToken cancel) { var document = CreateDocument(source); var parser = new XmlDomBuilder(document); await parser.ParseAsync(_options, cancel).ConfigureAwait(false); return(document); }
/// <summary> /// Parses the stream and returns the result. /// </summary> public IXmlDocument Parse(Stream source) { var document = CreateDocument(source); using (var parser = new XmlDomBuilder(document)) { parser.Parse(_options); } return(document); }
internal async static Task<IDocument> LoadAsync(IBrowsingContext context, CreateDocumentOptions options, CancellationToken cancelToken) { var parserOptions = new XmlParserOptions { }; var document = new XmlDocument(context, options.Source); var parser = new XmlDomBuilder(document); document.Setup(options); context.NavigateTo(document); context.Fire(new HtmlParseEvent(document, completed: false)); await parser.ParseAsync(default(XmlParserOptions), cancelToken).ConfigureAwait(false); context.Fire(new HtmlParseEvent(document, completed: true)); return document; }
/// <summary> /// Loads the document in the provided context from the given response. /// </summary> /// <param name="context">The browsing context.</param> /// <param name="response">The response to consider.</param> /// <param name="source">The source to use.</param> /// <param name="cancelToken">Token for cancellation.</param> /// <returns>The task that builds the document.</returns> internal async static Task<SvgDocument> LoadAsync(IBrowsingContext context, IResponse response, TextSource source, CancellationToken cancelToken) { var contentType = response.Headers.GetOrDefault(HeaderNames.ContentType, MimeTypes.Svg); var document = new SvgDocument(context, source); var parser = new XmlDomBuilder(document); document.ContentType = contentType; document.Referrer = response.Headers.GetOrDefault(HeaderNames.Referer, String.Empty); document.DocumentUri = response.Address.Href; document.Cookie = response.Headers.GetOrDefault(HeaderNames.SetCookie, String.Empty); document.ReadyState = DocumentReadyState.Loading; await parser.ParseAsync(default(XmlParserOptions), cancelToken).ConfigureAwait(false); return document; }
/// <summary> /// Loads the document in the provided context from the given response. /// </summary> /// <param name="context">The browsing context.</param> /// <param name="options">The creation options to consider.</param> /// <param name="cancelToken">Token for cancellation.</param> /// <returns>The task that builds the document.</returns> internal async static Task<IDocument> LoadAsync(IBrowsingContext context, CreateDocumentOptions options, CancellationToken cancelToken) { var document = new SvgDocument(context, options.Source); var evt = new HtmlParseStartEvent(document); var events = context.Configuration.Events; var parser = new XmlDomBuilder(document); document.Setup(options); context.NavigateTo(document); if (events != null) events.Publish(evt); await parser.ParseAsync(default(XmlParserOptions), cancelToken).ConfigureAwait(false); evt.FireEnd(); return document; }
/// <summary> /// Loads the document in the provided context from the given response. /// </summary> /// <param name="context">The browsing context.</param> /// <param name="response">The response to consider.</param> /// <param name="source">The source to use.</param> /// <param name="cancelToken">Token for cancellation.</param> /// <returns>The task that builds the document.</returns> internal async static Task<SvgDocument> LoadAsync(IBrowsingContext context, IResponse response, TextSource source, CancellationToken cancelToken) { var document = new SvgDocument(context, source); var evt = new HtmlParseStartEvent(document); var events = context.Configuration.Events; var parser = new XmlDomBuilder(document); document.ContentType = response.Headers.GetOrDefault(HeaderNames.ContentType, MimeTypes.Svg); document.Referrer = response.Headers.GetOrDefault(HeaderNames.Referer, String.Empty); document.DocumentUri = response.Address.Href; document.Cookie = response.Headers.GetOrDefault(HeaderNames.SetCookie, String.Empty); document.ReadyState = DocumentReadyState.Loading; context.NavigateTo(document); if (events != null) events.Publish(evt); await parser.ParseAsync(default(XmlParserOptions), cancelToken).ConfigureAwait(false); evt.FireEnd(); return document; }
/// <summary> /// Parses the string and returns the result. /// </summary> public IXmlDocument Parse(String source) { var document = CreateDocument(source); var parser = new XmlDomBuilder(document); parser.Parse(_options); return document; }
/// <summary> /// Parses the stream asynchronously with option to cancel. /// </summary> public async Task<IXmlDocument> ParseAsync(Stream source, CancellationToken cancel) { var document = CreateDocument(source); var parser = new XmlDomBuilder(document); await parser.ParseAsync(_options, cancel).ConfigureAwait(false); return document; }