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);
    }
 RemoteSupportResult RemoteSupportServices.DisableVisibility(RemoteSupportRequest request)
 {
     return(base.Channel.DisableVisibility(request));
 }