var UpdateVote=function() {
UpdateVote.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
UpdateVote.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(UpdateVote.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
VotePrompt:function(selectValue,succeededCallback, failedCallback, userContext) {
return this._invoke(UpdateVote.get_path(), 'VotePrompt',false,{selectValue:selectValue},succeededCallback,failedCallback,userContext); },
FlashVotePrompt:function(selectValue,succeededCallback, failedCallback, userContext) {
return this._invoke(UpdateVote.get_path(), 'FlashVotePrompt',false,{selectValue:selectValue},succeededCallback,failedCallback,userContext); },
NewGameVote:function(selectValue,succeededCallback, failedCallback, userContext) {
return this._invoke(UpdateVote.get_path(), 'NewGameVote',false,{selectValue:selectValue},succeededCallback,failedCallback,userContext); }}
UpdateVote.registerClass('UpdateVote',Sys.Net.WebServiceProxy);
UpdateVote._staticInstance = new UpdateVote();
UpdateVote.set_path = function(value) { UpdateVote._staticInstance._path = value; }
UpdateVote.get_path = function() { return UpdateVote._staticInstance._path; }
UpdateVote.set_timeout = function(value) { UpdateVote._staticInstance._timeout = value; }
UpdateVote.get_timeout = function() { return UpdateVote._staticInstance._timeout; }
UpdateVote.set_defaultUserContext = function(value) { UpdateVote._staticInstance._userContext = value; }
UpdateVote.get_defaultUserContext = function() { return UpdateVote._staticInstance._userContext; }
UpdateVote.set_defaultSucceededCallback = function(value) { UpdateVote._staticInstance._succeeded = value; }
UpdateVote.get_defaultSucceededCallback = function() { return UpdateVote._staticInstance._succeeded; }
UpdateVote.set_defaultFailedCallback = function(value) { UpdateVote._staticInstance._failed = value; }
UpdateVote.get_defaultFailedCallback = function() { return UpdateVote._staticInstance._failed; }
UpdateVote.set_path("/WebService/UpdateVote.asmx");
UpdateVote.HelloWorld= function(onSuccess,onFailed,userContext) {UpdateVote._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
UpdateVote.VotePrompt= function(selectValue,onSuccess,onFailed,userContext) {UpdateVote._staticInstance.VotePrompt(selectValue,onSuccess,onFailed,userContext); }
UpdateVote.FlashVotePrompt= function(selectValue,onSuccess,onFailed,userContext) {UpdateVote._staticInstance.FlashVotePrompt(selectValue,onSuccess,onFailed,userContext); }
UpdateVote.NewGameVote= function(selectValue,onSuccess,onFailed,userContext) {UpdateVote._staticInstance.NewGameVote(selectValue,onSuccess,onFailed,userContext); }
