Helios.Channels.AbstractChannel.AbstractChannel C# (CSharp) 메소드

AbstractChannel() 보호된 메소드

protected AbstractChannel ( IChannelId id, IChannel parent ) : System
id IChannelId
parent IChannel
리턴 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