Ejemplo n.º 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ResonanceEncoder"/> class.
        /// </summary>
        public ResonanceEncoder()
        {
            var att = this.GetType().GetCustomAttribute <ResonanceTranscodingAttribute>();

            _transcodingName         = att?.Name;
            _headerTranscoder        = OnCreateHeaderTranscoder();
            CompressionConfiguration = ResonanceGlobalSettings.Default.DefaultCompressionConfiguration();
            EncryptionConfiguration  = ResonanceGlobalSettings.Default.DefaultEncryptionConfiguration();
        }
Ejemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ResonanceDecoder"/> class.
 /// </summary>
 public ResonanceDecoder()
 {
     _headerTranscoder        = OnCreateHeaderTranscoder();
     CompressionConfiguration = ResonanceGlobalSettings.Default.DefaultCompressionConfiguration();
     EncryptionConfiguration  = ResonanceGlobalSettings.Default.DefaultEncryptionConfiguration();
 }