Binder.Dump Method

Definition

Overloads

Dump(FileDescriptor, String[])

Implemented to call the more convenient version #dump(FileDescriptor, PrintWriter, String[]).

Dump(FileDescriptor, PrintWriter, String[])

Print the object's state into the given stream.

Dump(FileDescriptor, String[])

Implemented to call the more convenient version #dump(FileDescriptor, PrintWriter, String[]).

[Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_arrayLjava_lang_String_Handler")]
public virtual void Dump (Java.IO.FileDescriptor fd, string[]? args);
[<Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_arrayLjava_lang_String_Handler")>]
abstract member Dump : Java.IO.FileDescriptor * string[] -> unit
override this.Dump : Java.IO.FileDescriptor * string[] -> unit

Parameters

fd
FileDescriptor

The raw file descriptor that the dump is being sent to.

args
String[]

additional arguments to the dump request.

Implements

Attributes

Remarks

Implemented to call the more convenient version #dump(FileDescriptor, PrintWriter, String[]).

Java documentation for android.os.Binder.dump(java.io.FileDescriptor, java.lang.String[]).

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

Dump(FileDescriptor, PrintWriter, String[])

Print the object's state into the given stream.

[Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")]
protected virtual void Dump (Java.IO.FileDescriptor fd, Java.IO.PrintWriter fout, string[]? args);
[<Android.Runtime.Register("dump", "(Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")>]
abstract member Dump : Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit
override this.Dump : Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit

Parameters

fd
FileDescriptor

The raw file descriptor that the dump is being sent to.

fout
PrintWriter

The file to which you should dump your state. This will be closed for you after you return.

args
String[]

additional arguments to the dump request.

Attributes

Remarks

Print the object's state into the given stream.

Java documentation for android.os.Binder.dump(java.io.FileDescriptor, java.io.PrintWriter, java.lang.String[]).

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