Ejemplo n.º 1
0
 protected bool ParseString()
 {
     if (HttpChar.IsChar(c) && !HttpChar.IsControl(c) && c != HttpChar.SP)
     {
         sb.Clear();
         sb.Append((char)c);
         c = TextStore.ReadChar();
     }
     else
     {
         return(false);
     }
     while (HttpChar.IsChar(c) && !HttpChar.IsControl(c) && c != HttpChar.SP)
     {
         sb.Append((char)c);
         c = TextStore.ReadChar();
     }
     return(true);
 }
Ejemplo n.º 2
0
 protected bool ParseToken()
 {
     if (HttpChar.IsChar(c) && !HttpChar.IsControl(c) && !HttpChar.IsSeparator(c))
     {
         sb.Clear();
         sb.Append((char)c);
         c = TextStore.ReadChar();
     }
     else
     {
         return(false);
     }
     while (HttpChar.IsChar(c) && !HttpChar.IsControl(c) && !HttpChar.IsSeparator(c))
     {
         sb.Append((char)c);
         c = TextStore.ReadChar();
     }
     return(true);
 }
Ejemplo n.º 3
0
 protected bool ParseQuotedPair()
 {
     if (c == '\\')
     {
         c = TextStore.ReadChar();
     }
     else
     {
         return(false);
     }
     if (HttpChar.IsChar(c))
     {
         sb.Append('\\');
         sb.Append((char)c);
         c = TextStore.ReadChar();
         return(true);
     }
     else
     {
         throw new Exception(ERROR_MALFORMED_QUOTEDPAIR);
     }
 }