ParcelFileDescriptor Class

Definition

The FileDescriptor returned by Parcel#readFileDescriptor, allowing you to close it when done with it.

[Android.Runtime.Register("android/os/ParcelFileDescriptor", DoNotGenerateAcw=true)]
public class ParcelFileDescriptor : Java.Lang.Object, Android.OS.IParcelable, IDisposable, Java.Interop.IJavaPeerable, Java.IO.ICloseable
[<Android.Runtime.Register("android/os/ParcelFileDescriptor", DoNotGenerateAcw=true)>]
type ParcelFileDescriptor = class
    inherit Object
    interface IParcelable
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
    interface ICloseable
Inheritance
ParcelFileDescriptor
Attributes
Implements

Remarks

The FileDescriptor returned by Parcel#readFileDescriptor, allowing you to close it when done with it.

Java documentation for android.os.ParcelFileDescriptor.

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.

Constructors

ParcelFileDescriptor(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

ParcelFileDescriptor(ParcelFileDescriptor)

Create a new ParcelFileDescriptor wrapped around another descriptor.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
Creator
Fd

Return the native fd int for this ParcelFileDescriptor.

FileDescriptor

Retrieve the actual FileDescriptor associated with this object.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
JniIdentityHashCode (Inherited from Object)
JniPeerMembers
PeerReference (Inherited from Object)
StatSize

Return the total size of the file representing this fd, as determined by stat().

ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Methods

AdoptFd(Int32)

Take ownership of a raw native fd in to a new ParcelFileDescriptor.

CanDetectErrors()

Indicates if this ParcelFileDescriptor can communicate and detect remote errors/crashes.

CheckError()

Detect and throw if the other end of a pipe or socket pair encountered an error or crashed.

Clone()

Creates and returns a copy of this object.

(Inherited from Object)
Close()

Close the ParcelFileDescriptor.

CloseWithError(String)

Close the ParcelFileDescriptor, informing any peer that an error occurred while processing.

CreatePipe()

Create two ParcelFileDescriptors structured as a data pipe.

CreateReliablePipe()

Create two ParcelFileDescriptors structured as a data pipe.

CreateReliableSocketPair()

Create two ParcelFileDescriptors structured as a pair of sockets connected to each other.

CreateSocketPair()

Create two ParcelFileDescriptors structured as a pair of sockets connected to each other.

DescribeContents()

Describe the kinds of special objects contained in this Parcelable's marshalled representation.

DetachFd()

Return the native fd int for this ParcelFileDescriptor and detach it from the object here.

Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Dup()

Create a new ParcelFileDescriptor that is a dup of the existing FileDescriptor.

Dup(FileDescriptor)

Create a new ParcelFileDescriptor that is a dup of an existing FileDescriptor.

Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
FromDatagramSocket(DatagramSocket)

Create a new ParcelFileDescriptor from the specified DatagramSocket.

FromFd(Int32)

Create a new ParcelFileDescriptor from a raw native fd.

FromSocket(Socket)

Create a new ParcelFileDescriptor from the specified Socket.

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
Open(File, ParcelFileMode)

Create a new ParcelFileDescriptor accessing a given file.

Open(File, ParcelFileMode, Handler, ParcelFileDescriptor+IOnCloseListener)

Create a new ParcelFileDescriptor accessing a given file.

ParseMode(String)

Converts a string representing a file mode, such as "rw", into a bitmask suitable for use with #open.

SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wrap(ParcelFileDescriptor, Handler, ParcelFileDescriptor+IOnCloseListener)

Create a new ParcelFileDescriptor wrapping an already-opened file.

WriteToParcel(Parcel, ParcelableWriteFlags)

To be added If Parcelable#PARCELABLE_WRITE_RETURN_VALUE is set in flags, the file descriptor will be closed after a copy is written to the Parcel.

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to