Class ServiceInfo
Definition
- Namespace:
- Tizen.Applications
- Assembly:
- Tizen.Applications.UnitedService.dll
This class provides properties to retrieve information the service.
public class ServiceInfo
- Inheritance
-
objectServiceInfo
Properties
View SourceAssembly
The assembly of the service.
Declaration
public ServiceAssembly Assembly { get; }
Property Value
| Type | Description |
|---|---|
| ServiceAssembly |
ClassName
The class name of the service.
Declaration
public string ClassName { get; }
Property Value
| Type | Description |
|---|---|
| string |
ExecutablePath
Gets the executable path of the application.
Declaration
public string ExecutablePath { get; }
Property Value
| Type | Description |
|---|---|
| string |
Id
The Id of the service.
Declaration
public string Id { get; }
Property Value
| Type | Description |
|---|---|
| string |
Metadata
The metadata of the service.
Declaration
public IDictionary<string, string> Metadata { get; }
Property Value
| Type | Description |
|---|---|
| IDictionary<, ><string, string> |
Name
The name of the service.
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
PackageId
The package ID of the service.
Declaration
public string PackageId { get; }
Property Value
| Type | Description |
|---|---|
| string |
ResourcePath
The resource path of the service.
Declaration
public string ResourcePath { get; }
Property Value
| Type | Description |
|---|---|
| string |
ResourceType
The resource type of the service.
Declaration
public string ResourceType { get; }
Property Value
| Type | Description |
|---|---|
| string |
ResourceVersion
The resource version of the service.
Declaration
public string ResourceVersion { get; }
Property Value
| Type | Description |
|---|---|
| string |
Type
The type of the runtime of the service.
Declaration
public string Type { get; }
Property Value
| Type | Description |
|---|---|
| string |
UseThread
Check whether the service uses a thread or not.
Declaration
public bool UseThread { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Methods
View SourceCreate(string)
Creates the information of the Service.
Declaration
public static ServiceInfo Create(string packageId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | packageId | The package ID of the service. |
Returns
| Type | Description |
|---|---|
| ServiceInfo | The information of the service. |