System.IO.WindowsRuntimeStreamExtensions.AsStream C# (CSharp) 메소드

AsStream() 공개 정적인 메소드

public static AsStream ( this source ) : Stream
source this
리턴 Stream
		public static Stream AsStream (this IInputStream source)
		{
			if (source == null)
				throw new ArgumentNullException ("source");

			throw new NotImplementedException();
		}