Exemple #1
0
        private void OnCustomEvent(object notifId, object data)
        {
            String eventKey = notifId as String;

            if (eventKey.Equals(this.eventKey) && this.messageHandler != null)
            {
                messageHandler(0, NCacheMessage.FromBytes(data as byte[], this._trace));
            }
        }