a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
33 lines
633 B
C#
33 lines
633 B
C#
// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
|
|
using System;
|
|
using System.Text;
|
|
|
|
namespace HtmlAgilityPack
|
|
{
|
|
internal class EncodingFoundException : Exception
|
|
{
|
|
#region Fields
|
|
|
|
private Encoding _encoding;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal EncodingFoundException(Encoding encoding)
|
|
{
|
|
_encoding = encoding;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
internal Encoding Encoding
|
|
{
|
|
get { return _encoding; }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |