Exemplo n.º 1
0
 public static string HtmlEntities(string _string, HtmlEntitiesFlags flags)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public static string HtmlEntities(string _string, HtmlEntitiesFlags flags, Charsets encoding, bool doubleEncode)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public static string HtmlSpecialChars(string _string, HtmlEntitiesFlags flags)
 {
     //  string htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = 'UTF-8' [, bool $double_encode = true ]]] )
     throw new NotImplementedException();
 }
Exemplo n.º 4
0
 public static string HtmlEntities(string _string, HtmlEntitiesFlags flags, Charsets encoding, bool doubleEncode)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 5
0
 public static string HtmlEntities(string _string, HtmlEntitiesFlags flags)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 6
0
 public static string HtmlSpecialChars(string _string, HtmlEntitiesFlags flags)
 {
     //  string htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = 'UTF-8' [, bool $double_encode = true ]]] )
     throw new NotImplementedException();
 }
Exemplo n.º 7
0
 public static string htmlspecialchars(string _string, HtmlEntitiesFlags flags = HtmlEntitiesFlags.COMPAT | HtmlEntitiesFlags.HTML401, Charsets encoding = Charsets.UTF_8)
 {
     //  string htmlspecialchars ( string $string [, int $flags = ENT_COMPAT | ENT_HTML401 [, string $encoding = 'UTF-8' [, bool $double_encode = true ]]] )
     return(HttpUtility.HtmlEncode(_string));
 }