AllegroGraphCSharpClient.Catalog.getRepository C# (CSharp) Method

getRepository() public method

public getRepository ( string name, string url ) : Repository
name string
url string
return Repository
        public Repository getRepository(string name, string url)
        {
            if (url != string.Empty)
            {
                this._url = url;
            }
            return new Repository(this._url + @"/repositories/" + legalizeName(name,this._url));
        }