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