1 function Sys$Net$WebRequest$set_httpVerb(value) {
2 var e = Function._validateParams(arguments, [{name: "value", type: String}]);
3 if (e) throw e;
4 if (value.length === 0) {
5 throw Error.argument('value', Sys.Res.invalidHttpVerb);
6 }
7 this._httpVerb = value;
8 }