Esempio n. 1
0
		public BufferedOutputStream(BufferedOutput output)
		{
			this.output = output;
		}
Esempio n. 2
0
		private static PhpArray/*!*/ GetLevelStatus(BufferedOutput/*!*/ bo, int index)
		{
			PhpArray result = new PhpArray(0, 3);

			PhpCallback filter;
			int size;
			bo.GetLevelInfo(index, out filter, out size);

			if (filter != null)
			{
				result.Add("type", 1);
				result.Add("name", ((IPhpConvertible)filter).ToString());
			}
			else
			{
				result.Add("type", 0);
			}
			result.Add("buffer_size", size);

			return result;
		}
Esempio n. 3
0
 public BufferedOutputStream(BufferedOutput output)
 {
     this.output = output;
 }