/// <summary>
        /// Execute the process of this action.
        /// </summary>
        public override void Execute()
        {
            if (this.Title != null)
            {
                Logger.Info(this.Title);
            }

            var msSource = this.Context.Buffers.Get <MemoryStream>(this.From.Value);

            ISdd1Comp sdd1 = new Sdd1();

            var msDestination = sdd1.Compress(msSource);

            this.Context.Buffers.Add(this.To.Value, msDestination);
        }