public RemoteSupportResult(bool IsSuccess, www.hp.com.isee.webservices.ServiceError Error, string Gdid, int BackoffMultiplier)
 {
     this.IsSuccess         = IsSuccess;
     this.Error             = Error;
     this.Gdid              = Gdid;
     this.BackoffMultiplier = BackoffMultiplier;
 }
    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);
    }