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

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

Creates a SliceStream specifying a start offset and a length.
static public CreateWithLength ( Stream BaseStream, long ThisStart, long ThisLength = -1, bool CanWrite = null ) : SliceStream
BaseStream Stream Base Stream
ThisStart long Starting Offset
ThisLength long Length of the Slice
CanWrite bool Determines if the Stream will be writtable.
Результат SliceStream
		static public SliceStream CreateWithLength(Stream BaseStream, long ThisStart = 0, long ThisLength = -1, bool? CanWrite = null)
		{
			return new SliceStream(BaseStream, ThisStart, ThisLength, CanWrite);
		}