Tag.GetTechList Method

Definition

Get the technologies available in this tag, as fully qualified class names.

[Android.Runtime.Register("getTechList", "()[Ljava/lang/String;", "")]
public string[]? GetTechList ();
[<Android.Runtime.Register("getTechList", "()[Ljava/lang/String;", "")>]
member this.GetTechList : unit -> string[]

Returns

String[]

an array of fully-qualified TagTechnology class-names.

Attributes

Remarks

Get the technologies available in this tag, as fully qualified class names.

A technology is an implementation of the TagTechnology interface, and can be instantiated by calling the static get(Tag) method on the implementation with this Tag. The TagTechnology object can then be used to perform advanced, technology-specific operations on a tag.

Android defines a mandatory set of technologies that must be correctly enumerated by all Android NFC devices, and an optional set of proprietary technologies. See TagTechnology for more details.

The ordering of the returned array is undefined and should not be relied upon.

Java documentation for android.nfc.Tag.getTechList().

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