コード例 #1
0
ファイル: _CallLogs.cs プロジェクト: spider-bkv/SwitchvoxAPI
 internal CallLogs(SwitchvoxClient client)
 {
     this.client = client;
 }
コード例 #2
0
ファイル: _Settings.cs プロジェクト: spider-bkv/SwitchvoxAPI
 /// <summary>
 /// Initializes a new instance of the <see cref="Settings"/> class.
 /// </summary>
 /// <param name="client">The <see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal Settings(SwitchvoxClient client)
 {
     this.client = client;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CurrentCalls"/> class.
 /// </summary>
 /// <param name="client">The <see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal CurrentCalls(SwitchvoxClient client)
 {
     this.client = client;
 }
コード例 #4
0
ファイル: _IVR.cs プロジェクト: spider-bkv/SwitchvoxAPI
        /// <summary>
        /// Initializes a new instance of the <see cref="IVR"/> class.
        /// </summary>
        /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
        internal IVR(SwitchvoxClient client)
        {
            this.client = client;

            GlobalVariables = new GlobalVariables(client);
        }
コード例 #5
0
        /// <summary>
        /// Initializes a new instance of the <see cref="Extensions"/> class.
        /// </summary>
        /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
        internal Extensions(SwitchvoxClient client)
        {
            this.client = client;

            Settings = new Settings(client);
        }
コード例 #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GlobalVariables"/> class.
 /// </summary>
 /// <param name="client"><see cref="SwitchvoxClient"/> methods will use to communicate with the phone server.</param>
 internal GlobalVariables(SwitchvoxClient client)
 {
     this.client = client;
 }
コード例 #7
0
 internal CallQueuesUsers(SwitchvoxClient client)
 {
     this.client = client;
 }
コード例 #8
0
        internal Users(SwitchvoxClient client)
        {
            this.client = client;

            CallQueues = new CallQueuesUsers(client);
        }