RingCentral.SDK.SDK C# (CSharp) Method

SDK() public method

Constructor that sets up RingCentral Client
public SDK ( string appKey, string appSecret, Server server, string appName = "", string appVersion = "" ) : RingCentral.Subscription
appKey string Application Key
appSecret string Application Secret
server Server Server.Sandbox or Server.Production
appName string Application name, will be used in user agent
appVersion string Application Version, will be used in user agent
return RingCentral.Subscription
        public SDK(string appKey, string appSecret, Server server, string appName = "", string appVersion = "")
            : this(appKey, appSecret,
            (server == Server.Production ? ProductionServerUrl : SandboxServerUrl), appName, appVersion)
        {
        }

Same methods

SDK::SDK ( string appKey, string appSecret, string serverUrl, string appName = "", string appVersion = "" ) : RingCentral.Subscription