System.IO.WindowsRuntimeStreamExtensions.AsInputStream C# (CSharp) Méthode

AsInputStream() public static méthode

public static AsInputStream ( this source ) : IInputStream
source this
Résultat IInputStream
		public static IInputStream AsInputStream (this Stream source)
		{
			if (source == null)
				throw new ArgumentNullException ("source");

			return new StreamToInputStreamAdapter (source);
		}