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

GetOutputStreamAt() public méthode

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

Usage Example

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