Intent.GetShortExtra(String, Int16) Method

Definition

Retrieve extended data from the intent.

[Android.Runtime.Register("getShortExtra", "(Ljava/lang/String;S)S", "GetGetShortExtra_Ljava_lang_String_SHandler")]
public virtual short GetShortExtra (string? name, short defaultValue);
[<Android.Runtime.Register("getShortExtra", "(Ljava/lang/String;S)S", "GetGetShortExtra_Ljava_lang_String_SHandler")>]
abstract member GetShortExtra : string * int16 -> int16
override this.GetShortExtra : string * int16 -> int16

Parameters

name
String

The name of the desired item.

defaultValue
Int16

the value to be returned if no value of the desired type is stored with the given name.

Returns

the value of an item previously added with putExtra(), or the default value if none was found.

Attributes

Remarks

Retrieve extended data from the intent.

Java documentation for android.content.Intent.getShortExtra(java.lang.String, short).

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

See also

  • <xref:Android.Content.Intent.PutExtra(System.String%2c+System.Int16)>