// IChannel

        public virtual T GetProperty <T> () where T : class
        {
            return(inner.GetProperty <T> ());
        }
Esempio n. 2
0
        // IChannel

        public override T GetProperty <T> ()
        {
            // FIXME: implement
            return(inner.GetProperty <T> ());
        }
 public T GetProperty <T>() where T : class
 {
     return(_innerChannel.GetProperty <T>());
 }