Os.Pwrite Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Pwrite(FileDescriptor, ByteBuffer, Int64) |
See pwrite(2). |
Pwrite(FileDescriptor, Byte[], Int32, Int32, Int64) |
See pwrite(2). |
Pwrite(FileDescriptor, ByteBuffer, Int64)
See pwrite(2).
[Android.Runtime.Register("pwrite", "(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;J)I", "")]
public static int Pwrite (Java.IO.FileDescriptor? fd, Java.Nio.ByteBuffer? buffer, long offset);
[<Android.Runtime.Register("pwrite", "(Ljava/io/FileDescriptor;Ljava/nio/ByteBuffer;J)I", "")>]
static member Pwrite : Java.IO.FileDescriptor * Java.Nio.ByteBuffer * int64 -> int
Parameters
- buffer
- ByteBuffer
- offset
- Int64
Returns
- Attributes
Exceptions
Remarks
See pwrite(2).
Java documentation for android.system.Os.pwrite(java.io.FileDescriptor, java.nio.ByteBuffer, long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
Pwrite(FileDescriptor, Byte[], Int32, Int32, Int64)
See pwrite(2).
[Android.Runtime.Register("pwrite", "(Ljava/io/FileDescriptor;[BIIJ)I", "")]
public static int Pwrite (Java.IO.FileDescriptor? fd, byte[]? bytes, int byteOffset, int byteCount, long offset);
[<Android.Runtime.Register("pwrite", "(Ljava/io/FileDescriptor;[BIIJ)I", "")>]
static member Pwrite : Java.IO.FileDescriptor * byte[] * int * int * int64 -> int
Parameters
- bytes
- Byte[]
- byteOffset
- Int32
- byteCount
- Int32
- offset
- Int64
Returns
- Attributes
Exceptions
Remarks
See pwrite(2).
Java documentation for android.system.Os.pwrite(java.io.FileDescriptor, byte[], int, int, long)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.