1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
namespace ShellAgent.Model.Constant
{
class OriginFilter
{
/// <summary>
/// List of prohibvalues of A
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceA()
{
List<string> maList = new List<string>();
maList.Add("á");
maList.Add("â");
maList.Add("à");
maList.Add("ä");
maList.Add("ã");
maList.Add("å");
maList.Add("Á");
maList.Add("Â");
maList.Add("À");
maList.Add("Ä");
maList.Add("Ã");
maList.Add("Å");
return maList;
}
/// <summary>
/// List of prohibvalues of E
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceE()
{
List<string> maList = new List<string>();
maList.Add("é");
maList.Add("ê");
maList.Add("ê");
maList.Add("è");
maList.Add("ë");
maList.Add("É");
maList.Add("Ê");
maList.Add("È");
maList.Add("Ë");
return maList;
}
/// <summary>
/// List of prohibvalues of I
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceI()
{
List<string> maList = new List<string>();
maList.Add("í");
maList.Add("î");
maList.Add("ì");
maList.Add("ï");
maList.Add("Í");
maList.Add("Î");
maList.Add("Ì");
maList.Add("Ï");
return maList;
}
/// <summary>
/// List of prohibvalues of O
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceO()
{
List<string> maList = new List<string>();
maList.Add("ó");
maList.Add("ô");
maList.Add("ò");
maList.Add("ö");
maList.Add("õ");
maList.Add("Ó");
maList.Add("Ô");
maList.Add("Ò");
maList.Add("Ö");
maList.Add("Õ");
return maList;
}
/// <summary>
/// List of prohibvalues of U
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceU()
{
List<string> maList = new List<string>();
maList.Add("ú");
maList.Add("û");
maList.Add("ù");
maList.Add("ü");
maList.Add("Ú");
maList.Add("Û");
maList.Add("Ù");
maList.Add("Ü");
return maList;
}
/// <summary>
/// List of prohibvalues of Y
/// </summary>
/// <returns>List string explicit </returns>
public List<string> ReplaceY()
{
List<string> maList = new List<string>();
maList.Add("ý");
maList.Add("ÿ");
maList.Add("Ý");
maList.Add("");
return maList;
}
} |