var UpdateVideoStats=function() {
UpdateVideoStats.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
UpdateVideoStats.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return UpdateVideoStats._staticInstance.get_path();},
updateVideoHit:function(videoName,succeededCallback, failedCallback, userContext) {
/// <param name="videoName" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'updateVideoHit',false,{videoName:videoName},succeededCallback,failedCallback,userContext); }}
UpdateVideoStats.registerClass('UpdateVideoStats',Sys.Net.WebServiceProxy);
UpdateVideoStats._staticInstance = new UpdateVideoStats();
UpdateVideoStats.set_path = function(value) {
UpdateVideoStats._staticInstance.set_path(value); }
UpdateVideoStats.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return UpdateVideoStats._staticInstance.get_path();}
UpdateVideoStats.set_timeout = function(value) {
UpdateVideoStats._staticInstance.set_timeout(value); }
UpdateVideoStats.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return UpdateVideoStats._staticInstance.get_timeout(); }
UpdateVideoStats.set_defaultUserContext = function(value) { 
UpdateVideoStats._staticInstance.set_defaultUserContext(value); }
UpdateVideoStats.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return UpdateVideoStats._staticInstance.get_defaultUserContext(); }
UpdateVideoStats.set_defaultSucceededCallback = function(value) { 
 UpdateVideoStats._staticInstance.set_defaultSucceededCallback(value); }
UpdateVideoStats.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return UpdateVideoStats._staticInstance.get_defaultSucceededCallback(); }
UpdateVideoStats.set_defaultFailedCallback = function(value) { 
UpdateVideoStats._staticInstance.set_defaultFailedCallback(value); }
UpdateVideoStats.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return UpdateVideoStats._staticInstance.get_defaultFailedCallback(); }
UpdateVideoStats.set_path("/UpdateVideoStats.asmx");
UpdateVideoStats.updateVideoHit= function(videoName,onSuccess,onFailed,userContext) {
/// <param name="videoName" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
UpdateVideoStats._staticInstance.updateVideoHit(videoName,onSuccess,onFailed,userContext); }

