var Key=function() {
Key.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Key.prototype={
RemoveKey:function(key,succeededCallback, failedCallback, userContext) {
return this._invoke(Key.get_path(), 'RemoveKey',false,{key:key},succeededCallback,failedCallback,userContext); }}
Key.registerClass('Key',Sys.Net.WebServiceProxy);
Key._staticInstance = new Key();
Key.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; Key._staticInstance._path = value; }
Key.get_path = function() { return Key._staticInstance._path; }
Key.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); }
Key._staticInstance._timeout = value; }
Key.get_timeout = function() { 
return Key._staticInstance._timeout; }
Key.set_defaultUserContext = function(value) { 
Key._staticInstance._userContext = value; }
Key.get_defaultUserContext = function() { 
return Key._staticInstance._userContext; }
Key.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; Key._staticInstance._succeeded = value; }
Key.get_defaultSucceededCallback = function() { 
return Key._staticInstance._succeeded; }
Key.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; Key._staticInstance._failed = value; }
Key.get_defaultFailedCallback = function() { 
return Key._staticInstance._failed; }
Key.set_path("/Bizadlive/Locator/Key.asmx");
Key.RemoveKey= function(key,onSuccess,onFailed,userContext) {Key._staticInstance.RemoveKey(key,onSuccess,onFailed,userContext); }
