File: System\Xml\Core\XmlWrappingReaderAsync.cs
Web Access
Project: src\src\libraries\System.Private.Xml\src\System.Private.Xml.csproj (System.Private.Xml)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections;
using System.Diagnostics;
using System.Threading.Tasks;
using System.Xml;
using System.Xml.Schema;
 
namespace System.Xml
{
    internal partial class XmlWrappingReader : XmlReader, IXmlLineInfo
    {
        public override Task<string> GetValueAsync()
        {
            return reader.GetValueAsync();
        }
 
        public override Task<bool> ReadAsync()
        {
            return reader.ReadAsync();
        }
 
        public override Task SkipAsync()
        {
            return reader.SkipAsync();
        }
    }
}