Show / Hide Table of Contents

Class AppProcessInfo

Information about a process. It contains process name, start time, app Uid, app Pid, seinfo tag, hash of the base APK.

Inheritance
object
AppProcessInfo
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.AndroidManagement.v1.Data
Assembly: Google.Apis.AndroidManagement.v1.dll
Syntax
public class AppProcessInfo : IDirectResponseSchema

Properties

ApkSha256Hash

SHA-256 hash of the base APK, in hexadecimal format.

Declaration
[JsonProperty("apkSha256Hash")]
public virtual string ApkSha256Hash { get; set; }
Property Value
Type Description
string

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

PackageNames

Package names of all packages that are associated with the particular user ID. In most cases, this will be a single package name, the package that has been assigned that user ID. If multiple application share a UID then all packages sharing UID will be included.

Declaration
[JsonProperty("packageNames")]
public virtual IList<string> PackageNames { get; set; }
Property Value
Type Description
IList<string>

Pid

Process ID.

Declaration
[JsonProperty("pid")]
public virtual int? Pid { get; set; }
Property Value
Type Description
int?

ProcessName

Process name.

Declaration
[JsonProperty("processName")]
public virtual string ProcessName { get; set; }
Property Value
Type Description
string

Seinfo

SELinux policy info.

Declaration
[JsonProperty("seinfo")]
public virtual string Seinfo { get; set; }
Property Value
Type Description
string

StartTime

object representation of StartTimeRaw.

Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use StartTimeDateTimeOffset instead.")]
public virtual object StartTime { get; set; }
Property Value
Type Description
object

StartTimeDateTimeOffset

DateTimeOffset representation of StartTimeRaw.

Declaration
[JsonIgnore]
public virtual DateTimeOffset? StartTimeDateTimeOffset { get; set; }
Property Value
Type Description
DateTimeOffset?

StartTimeRaw

Process start time.

Declaration
[JsonProperty("startTime")]
public virtual string StartTimeRaw { get; set; }
Property Value
Type Description
string

Uid

UID of the package.

Declaration
[JsonProperty("uid")]
public virtual int? Uid { get; set; }
Property Value
Type Description
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX