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

OpenRead() public static method

public static OpenRead ( this source, long offset ) : Stream
source this
offset long
return Stream
		public static Stream OpenRead (this IRandomAccessStream source, long offset)
		{
			if (source == null)
				throw new ArgumentNullException ("source");

			throw new NotImplementedException();
		}
		

Same methods

WindowsRuntimeStreamExtensions::OpenRead ( this streamProvider ) : Stream