Skip to content

Commit

Permalink
Add an accessor for the strict flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonh committed Oct 22, 2010
1 parent 9bb7c76 commit db6f2c5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/HttpParser/HttpParser.cs
Expand Up @@ -44,6 +44,11 @@ public HttpParser (ParserType type)
}
}

public bool Strict {
get { return strict; }
set { strict = value; }
}

public int Major {
get { return http_major; }
}
Expand Down

0 comments on commit db6f2c5

Please sign in to comment.