Exemplo n.º 1
0
Arquivo: Codec.cs Projeto: ifzz/FDK
        internal Codec(ICodecProxy proxy)
        {
            if (proxy == null)
                throw new ArgumentNullException(nameof(proxy));

            this.proxy = proxy;
        }
Exemplo n.º 2
0
Arquivo: Codec.cs Projeto: ifzz/FDK
        public void Dispose()
        {
            if (this.proxy == null)
                return;

            this.proxy.Dispose();
            this.proxy = null;
        }
Exemplo n.º 3
0
        internal Codec(ICodecProxy proxy)
        {
            if (proxy == null)
            {
                throw new ArgumentNullException(nameof(proxy));
            }

            this.proxy = proxy;
        }
Exemplo n.º 4
0
        public void Dispose()
        {
            if (this.proxy == null)
            {
                return;
            }

            this.proxy.Dispose();
            this.proxy = null;
        }