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);
		}