System.IO.WindowsRuntimeStreamExtensions.AsInputStream C# (CSharp) Метод

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

public static AsInputStream ( this source ) : IInputStream
source this
Результат IInputStream
		public static IInputStream AsInputStream (this Stream source)
		{
			if (source == null)
				throw new ArgumentNullException ("source");

			return new StreamToInputStreamAdapter (source);
		}