mirror of
https://github.com/claunia/Claunia.Encoding.git
synced 2025-12-16 19:24:43 +00:00
Added missing XML documentation and emptied webname.
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
2016-08-18 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* LisaRoman.cs: Added missing XML documentation and emptied
|
||||||
|
webname.
|
||||||
|
|
||||||
2016-08-18 Natalia Portillo <claunia@claunia.com>
|
2016-08-18 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Encoding.cs:
|
* Encoding.cs:
|
||||||
|
|||||||
@@ -28,13 +28,16 @@ using System;
|
|||||||
|
|
||||||
namespace Claunia.Encoding
|
namespace Claunia.Encoding
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Represents an Apple Lisa character encoding of Unicode characters.
|
||||||
|
/// </summary>
|
||||||
public class LisaRoman : System.Text.Encoding
|
public class LisaRoman : System.Text.Encoding
|
||||||
{
|
{
|
||||||
const string _bodyname = "lisa";
|
const string _bodyname = "lisa";
|
||||||
const int _codepage = 0;
|
const int _codepage = 0;
|
||||||
const string _encodingname = "Apple Lisa";
|
const string _encodingname = "Apple Lisa";
|
||||||
const string _headername = "lisa";
|
const string _headername = "lisa";
|
||||||
const string _webname = "lisa";
|
const string _webname = "";
|
||||||
const int _windowsCodepage = 10000;
|
const int _windowsCodepage = 10000;
|
||||||
|
|
||||||
const bool browserDisplay = false;
|
const bool browserDisplay = false;
|
||||||
@@ -108,6 +111,9 @@ namespace Claunia.Encoding
|
|||||||
get { return _headername; }
|
get { return _headername; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Ggets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding.
|
||||||
|
/// </summary>
|
||||||
public override string WebName {
|
public override string WebName {
|
||||||
get { return _webname; }
|
get { return _webname; }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user