Show / Hide Table of Contents

Class AN_ResolveInfo

Information that is returned from resolving an intent against an IntentFilter. This partially corresponds to information collected from the AndroidManifest.xml intent tags.

Inheritance
System.Object
AN_ResolveInfo
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SA.Android.Content.Pm
Assembly: cs.temp.dll.dll
Syntax
public class AN_ResolveInfo

Properties

ActivityInfo

The activity or broadcast receiver that corresponds to this resolution match, if this resolution is for an activity or broadcast receiver. Exactly one of ActivityInfo , ServiceInfo, or ProviderInfo will be non-null.

Declaration
public AM_ActivityInfo ActivityInfo { get; }
Property Value
Type Description
AM_ActivityInfo

ProviderInfo

The provider that corresponds to this resolution match, if this resolution is for a provider. Exactly one of ActivityInfo , ServiceInfo, or ProviderInfo will be non-null.

Declaration
public AN_ProviderInfo ProviderInfo { get; }
Property Value
Type Description
AN_ProviderInfo

ServiceInfo

The service that corresponds to this resolution match, if this resolution is for a service. Exactly one of ActivityInfo , ServiceInfo, or ProviderInfo will be non-null.

Declaration
public AN_ServiceInfo ServiceInfo { get; }
Property Value
Type Description
AN_ServiceInfo
In This Article
Back to top Generated by DocFX