ReleaseAgent() public method

public ReleaseAgent ( UUID origin, UUID id, string uri ) : bool
origin UUID
id UUID
uri string
return bool
        public bool ReleaseAgent(UUID origin, UUID id, string uri)
        {
            // Try local first
            if (m_localBackend.ReleaseAgent(origin, id, uri))
            {
                return(true);
            }

            // else do the remote thing
            if (!m_localBackend.IsLocalRegion(origin))
            {
                return(m_remoteConnector.ReleaseAgent(origin, id, uri));
            }

            return(false);
        }