private void RegisterClientCall(ClientAPIRegisterType type, ScriptKey scriptKey, string stringParam2)
        {
            RegisterCallData data = new RegisterCallData {
                Type         = type,
                Key          = scriptKey,
                StringParam2 = stringParam2
            };

            if (this._cacheEntry.RegisteredClientCalls == null)
            {
                this._cacheEntry.RegisteredClientCalls = new ArrayList();
            }
            this._cacheEntry.RegisteredClientCalls.Add(data);
        }
        private void RegisterClientCall(ClientAPIRegisterType type, string stringParam1, string stringParam2, string stringParam3)
        {
            RegisterCallData data = new RegisterCallData {
                Type         = type,
                StringParam1 = stringParam1,
                StringParam2 = stringParam2,
                StringParam3 = stringParam3
            };

            if (this._cacheEntry.RegisteredClientCalls == null)
            {
                this._cacheEntry.RegisteredClientCalls = new ArrayList();
            }
            this._cacheEntry.RegisteredClientCalls.Add(data);
        }
        private void RegisterClientCall(ClientAPIRegisterType type,
                                        ScriptKey scriptKey, string stringParam2)
        {
            // Keep track of the call, in order to be able to call it again when there is a cache hit.

            RegisterCallData registerCallData = new RegisterCallData();

            registerCallData.Type         = type;
            registerCallData.Key          = scriptKey;
            registerCallData.StringParam2 = stringParam2;

            if (_cacheEntry.RegisteredClientCalls == null)
            {
                _cacheEntry.RegisteredClientCalls = new ArrayList();
            }

            _cacheEntry.RegisteredClientCalls.Add(registerCallData);
        }
    private void RegisterClientCall(ClientAPIRegisterType type,
        string stringParam1, string stringParam2, string stringParam3) {

        // Keep track of the call, in order to be able to call it again when there is a cache hit.

        RegisterCallData registerCallData = new RegisterCallData();
        registerCallData.Type = type;
        registerCallData.StringParam1 = stringParam1;
        registerCallData.StringParam2 = stringParam2;
        registerCallData.StringParam3 = stringParam3;

        if (_cacheEntry.RegisteredClientCalls == null)
            _cacheEntry.RegisteredClientCalls = new ArrayList();

        _cacheEntry.RegisteredClientCalls.Add(registerCallData);
    }
 private void RegisterClientCall(ClientAPIRegisterType type, string stringParam1, string stringParam2, string stringParam3)
 {
     RegisterCallData data = new RegisterCallData {
         Type = type,
         StringParam1 = stringParam1,
         StringParam2 = stringParam2,
         StringParam3 = stringParam3
     };
     if (this._cacheEntry.RegisteredClientCalls == null)
     {
         this._cacheEntry.RegisteredClientCalls = new ArrayList();
     }
     this._cacheEntry.RegisteredClientCalls.Add(data);
 }
 private void RegisterClientCall(ClientAPIRegisterType type, ScriptKey scriptKey, string stringParam2)
 {
     RegisterCallData data = new RegisterCallData {
         Type = type,
         Key = scriptKey,
         StringParam2 = stringParam2
     };
     if (this._cacheEntry.RegisteredClientCalls == null)
     {
         this._cacheEntry.RegisteredClientCalls = new ArrayList();
     }
     this._cacheEntry.RegisteredClientCalls.Add(data);
 }