Windows.Storage.Streams.InMemoryRandomAccessStream.GetInputStreamAt C# (CSharp) Méthode

GetInputStreamAt() public méthode

public GetInputStreamAt ( [ position ) : IInputStream
position [
Résultat IInputStream
		public extern IInputStream GetInputStreamAt([In] ulong position);
		public extern IOutputStream GetOutputStreamAt([In] ulong position);

Usage Example

Exemple #1
0
 public IInputStream GetInputStreamAt(ulong position)
 {
     System.Diagnostics.Debug.WriteLine("GetInputStreamAt: " + position.ToString());
     if (internalStream.Size > position)
     {
         return(internalStream.GetInputStreamAt(position));
     }
     return(null);
 }
All Usage Examples Of Windows.Storage.Streams.InMemoryRandomAccessStream::GetInputStreamAt