Sharpen.PipedOutputStream.Attach C# (CSharp) Method

Attach() private method

private Attach ( PipedInputStream iss ) : void
iss PipedInputStream
return void
        internal void Attach(PipedInputStream iss)
        {
            ips = iss;
        }

Usage Example

Example #1
0
 public PipedInputStream(PipedOutputStream os) : this()
 {
     os.Attach(this);
 }
All Usage Examples Of Sharpen.PipedOutputStream::Attach