Type.registerNamespace('SlopeTrackerWeb.Public');
SlopeTrackerWeb.Public.WebCameraPicture=function() {
SlopeTrackerWeb.Public.WebCameraPicture.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
SlopeTrackerWeb.Public.WebCameraPicture.prototype={
GetLastPictureUrl:function(succeededCallback, failedCallback, userContext) {
return this._invoke(SlopeTrackerWeb.Public.WebCameraPicture.get_path(), 'GetLastPictureUrl',false,{},succeededCallback,failedCallback,userContext); }}
SlopeTrackerWeb.Public.WebCameraPicture.registerClass('SlopeTrackerWeb.Public.WebCameraPicture',Sys.Net.WebServiceProxy);
SlopeTrackerWeb.Public.WebCameraPicture._staticInstance = new SlopeTrackerWeb.Public.WebCameraPicture();
SlopeTrackerWeb.Public.WebCameraPicture.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._path = value; }
SlopeTrackerWeb.Public.WebCameraPicture.get_path = function() { return SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._path; }
SlopeTrackerWeb.Public.WebCameraPicture.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._timeout = value; }
SlopeTrackerWeb.Public.WebCameraPicture.get_timeout = function() { 
return SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._timeout; }
SlopeTrackerWeb.Public.WebCameraPicture.set_defaultUserContext = function(value) { 
SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._userContext = value; }
SlopeTrackerWeb.Public.WebCameraPicture.get_defaultUserContext = function() { 
return SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._userContext; }
SlopeTrackerWeb.Public.WebCameraPicture.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._succeeded = value; }
SlopeTrackerWeb.Public.WebCameraPicture.get_defaultSucceededCallback = function() { 
return SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._succeeded; }
SlopeTrackerWeb.Public.WebCameraPicture.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._failed = value; }
SlopeTrackerWeb.Public.WebCameraPicture.get_defaultFailedCallback = function() { 
return SlopeTrackerWeb.Public.WebCameraPicture._staticInstance._failed; }
SlopeTrackerWeb.Public.WebCameraPicture.set_path("/Public/WebCameraPicture.asmx");
SlopeTrackerWeb.Public.WebCameraPicture.GetLastPictureUrl= function(onSuccess,onFailed,userContext) {SlopeTrackerWeb.Public.WebCameraPicture._staticInstance.GetLastPictureUrl(onSuccess,onFailed,userContext); }
