System.IO.WindowsRuntimeStreamExtensions.OpenWrite C# (CSharp) Метод

OpenWrite() публичный статический Метод

public static OpenWrite ( this source ) : Stream
source this
Результат Stream
		public static Stream OpenWrite (this IRandomAccessStream source)
		{
			if (source == null)
				throw new ArgumentNullException ("source");

			throw new NotImplementedException();
		}

Same methods

WindowsRuntimeStreamExtensions::OpenWrite ( this source, long offset ) : Stream