public bool DisableVisibility(www.hp.com.isee.webservices.IseeWebServicesHeader Header, string password, string username, out www.hp.com.isee.webservices.ServiceError Error, out string Gdid, out int BackoffMultiplier)
    {
        RemoteSupportRequest inValue = new RemoteSupportRequest();

        inValue.Header   = Header;
        inValue.password = password;
        inValue.username = username;
        RemoteSupportResult retVal = ((RemoteSupportServices)(this)).DisableVisibility(inValue);

        Error             = retVal.Error;
        Gdid              = retVal.Gdid;
        BackoffMultiplier = retVal.BackoffMultiplier;
        return(retVal.IsSuccess);
    }
 public RemoteSupportRequest(www.hp.com.isee.webservices.IseeWebServicesHeader Header, string password, string username)
 {
     this.Header   = Header;
     this.password = password;
     this.username = username;
 }