System.IO.WindowsRuntimeStreamExtensions.AsStream C# (CSharp) Method

AsStream() public static method

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

			throw new NotImplementedException();
		}