AssetPackager.ScriptDeferFilter.WriteOutput C# (CSharp) Method

WriteOutput() private method

Writes specified number of bytes to the output stream.
private WriteOutput ( char content, int pos, int length ) : void
content char An array of chars to write.
pos int Position in buffer.
length int Number of chars to write.
return void
		private void WriteOutput(char[] content, int pos, int length)
		{
			if (length == 0) return;

			byte[] buffer = _encoding.GetBytes(content, pos, length);
			_responseStream.Write(buffer, 0, buffer.Length);
		}