Added in API level 26

ConnectEvent

class ConnectEvent : NetworkEvent, Parcelable
kotlin.Any
   ↳ android.app.admin.NetworkEvent
   ↳ android.app.admin.ConnectEvent

A class that represents a TCP connect event initiated through the standard network stack.

It contains information about the originating app as well as the remote TCP endpoint.

Support both IPv4 and IPv6 connections.

Summary

Inherited constants
Public methods
Int

InetAddress!

Int

String

Unit
writeToParcel(out: Parcel, flags: Int)

Inherited functions
Properties
static Parcelable.Creator<ConnectEvent!>

Public methods

describeContents

Added in API level 26
fun describeContents(): Int
Return
Int a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0 or android.os.Parcelable#CONTENTS_FILE_DESCRIPTOR

getInetAddress

Added in API level 26
fun getInetAddress(): InetAddress!

getPort

Added in API level 26
fun getPort(): Int

toString

Added in API level 26
fun toString(): String
Return
String a string representation of the object.

writeToParcel

Added in API level 26
fun writeToParcel(
    out: Parcel,
    flags: Int
): Unit
Parameters
dest The Parcel in which the object should be written. This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties

CREATOR

Added in API level 26
static val CREATOR: Parcelable.Creator<ConnectEvent!>