AssetPackager.ScriptDeferFilter.SetLength C# (CSharp) Method

SetLength() public method

Sets the length of the current stream.
public SetLength ( long value ) : void
value long The desired length of the current stream in bytes.
return void
		public override void SetLength(long value)
		{
			_responseStream.SetLength(value);
		}