File: System\Xml\IXmlLineInfo.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.
 
namespace System.Xml
{
    public interface IXmlLineInfo
    {
        bool HasLineInfo();
        int LineNumber { get; }
        int LinePosition { get; }
    }
 
    internal class PositionInfo : IXmlLineInfo
    {
        public virtual bool HasLineInfo() { return false; }
        public virtual int LineNumber { get { return 0; } }
        public virtual int LinePosition { get { return 0; } }
 
        public static PositionInfo GetPositionInfo(object o)
        {
            IXmlLineInfo? li = o as IXmlLineInfo;
            if (li != null)
            {
                return new ReaderPositionInfo(li);
            }
            else
            {
                return new PositionInfo();
            }
        }
    }
 
    internal sealed class ReaderPositionInfo : PositionInfo
    {
        private readonly IXmlLineInfo _lineInfo;
 
        public ReaderPositionInfo(IXmlLineInfo lineInfo)
        {
            _lineInfo = lineInfo;
        }
 
        public override bool HasLineInfo()
        {
            return _lineInfo.HasLineInfo();
        }
 
        public override int LineNumber
        {
            get
            {
                return _lineInfo.LineNumber;
            }
        }
 
        public override int LinePosition
        {
            get
            {
                return _lineInfo.LinePosition;
            }
        }
    }
}