NuxeoClient.Client.SetServerURL C# (CSharp) Метод

SetServerURL() публичный Метод

Sets the URL of the Nuxeo server.
public SetServerURL ( string url ) : Client
url string The Nuxeo server's URL.
Результат Client
        public Client SetServerURL(string url)
        {
            if (url == null || url == string.Empty)
            {
                ServerURL = "http://localhost:8080/nuxeo/";
            }
            else
            {
                ServerURL = url;
            }
            http.BaseAddress = new Uri(ServerURL);
            return this;
        }