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

