CSharpUtils.Streams.SliceStream.CreateWithBounds C# (CSharp) Метод

CreateWithBounds() статический публичный Метод

Creates a SliceStream specifying a start offset and a end offset.
static public CreateWithBounds ( Stream BaseStream, long LowerBound, long UpperBound, bool CanWrite = null ) : SliceStream
BaseStream Stream Parent Stream
LowerBound long
UpperBound long
CanWrite bool Determines if the Stream will be writtable.
Результат SliceStream
		static public SliceStream CreateWithBounds(Stream BaseStream, long LowerBound, long UpperBound, bool? CanWrite = null)
		{
			return new SliceStream(BaseStream, LowerBound, UpperBound - LowerBound, CanWrite);
		}