Facebook.FacebookApi.GetApiBaseUrl C# (CSharp) Method

GetApiBaseUrl() static private method

static private GetApiBaseUrl ( string relativeUrl ) : string
relativeUrl string
return string
        static string GetApiBaseUrl(string relativeUrl)
        {
            return (relativeUrl ?? String.Empty).StartsWith("method/") ? "https://api.facebook.com/" : "https://graph.facebook.com/";
        }
    }