Helios.Channels.AbstractChannel.AbstractChannel C# (CSharp) Method

AbstractChannel() protected method

protected AbstractChannel ( IChannelId id, IChannel parent ) : System
id IChannelId
parent IChannel
return System
        protected AbstractChannel(IChannelId id, IChannel parent)
        {
            Contract.Requires(id != null);
            Id = id;
            Parent = parent;
            // ReSharper disable once VirtualMemberCallInContructor
            _channelUnsafe = NewUnsafe();
            _pipeline = new DefaultChannelPipeline(this);
        }

Same methods

AbstractChannel::AbstractChannel ( IChannel parent ) : System