IntentArgument Class AndroidLib - Beatsleigher Edition
This class represents an Intent argument.
Examples

For example; this class is the same as if you were to manually pass the following command:
adb shell am -W -n com.package.name/com.package.name.ActivityName
where the following would be declared in this class:
-n com.package.name/com.package.name.ActivityName
Those arguments would look like the following:
var intentArg = IntentArgument.GetIntentArgument(IntentArgument.ArgumentPrefix.Component, )
It's a wrapper for the AM executable. To make your life easy.
Inheritance Hierarchy

SystemObject
  RegawMOD.AndroidIntentArgument

Namespace: RegawMOD.Android
Assembly: AndroidLib (in AndroidLib.dll) Version: 1.5.2.0 (1.5.2.0)
Syntax

public sealed class IntentArgument

The IntentArgument type exposes the following members.

Constructors

  NameDescription
Private methodIntentArgument
Initializes a new instance of the IntentArgument class.
Top
Methods

  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Protected methodStatic memberGetIntentArgument
Gets the intent argument.
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

  NameDescription
Private propertyArgs
Gets or sets the arguments.
Public propertyArgument
Gets the argument.
Private propertyPrefix
Gets or sets the argument prefix.
Top
See Also

Reference