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

AsOutputStream() 공개 정적인 메소드

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

			return new StreamToOutputStreamAdapter (source);
		}