コード例 #1
0
ファイル: FABChannel.cs プロジェクト: MrPoP/FABSolution
 protected FABChannel(IFABChannel parent, FABChannelId id)
 {
     this.Parent        = parent;
     this.Id            = id;
     this.channelUnsafe = this.NewUnsafe();
     this.pipeline      = this.NewChannelPipeline();
 }
コード例 #2
0
ファイル: FABChannelId.cs プロジェクト: MrPoP/FABSolution
        public static FABChannelId NewInstance()
        {
            var id = new FABChannelId();

            id.Init();
            return(id);
        }
コード例 #3
0
ファイル: FABChannel.cs プロジェクト: MrPoP/FABSolution
 protected virtual FABChannelId NewID()
 {
     return(FABChannelId.NewInstance());
 }