Show / Hide Table of Contents

    Class Application

    The class that represents a Tizen application.

    Inheritance
    Object
    Application
    ComponentBasedApplication
    CoreApplication
    Implements
    IDisposable
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Tizen.Applications
    Assembly: Tizen.Applications.Common.dll
    Syntax
    public abstract class Application : IDisposable

    Properties

    ApplicationInfo

    Gets the class representing information of the current application.

    Declaration
    public ApplicationInfo ApplicationInfo { get; }
    Property Value
    Type Description
    ApplicationInfo
    API Version
    3

    Current

    Gets the instance of the current application.

    Declaration
    public static Application Current { get; }
    Property Value
    Type Description
    Application
    API Version
    3

    DirectoryInfo

    Gets the class representing directory information of the current application.

    Declaration
    public DirectoryInfo DirectoryInfo { get; }
    Property Value
    Type Description
    DirectoryInfo
    API Version
    3

    Name

    Gets the name of current application.

    Declaration
    public string Name { get; }
    Property Value
    Type Description
    String
    API Version
    6

    Version

    Gets the version of current application.

    Declaration
    public string Version { get; }
    Property Value
    Type Description
    String
    API Version
    6

    Methods

    Dispose()

    Releases all resources used by the application class.

    Declaration
    public void Dispose()
    API Version
    3

    Dispose(Boolean)

    Releases any unmanaged resources used by this object. Can also dispose any other disposable objects.

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    Boolean disposing

    If true, disposes any disposable objects. If false, does not dispose disposable objects.

    API Version
    3

    Exit()

    Exits the main loop of the application.

    Declaration
    public abstract void Exit()
    API Version
    3

    Finalize()

    Finalizer of the application class.

    Declaration
    protected void Finalize()

    Run(String[])

    Runs the application's main loop.

    Declaration
    public virtual void Run(string[] args)
    Parameters
    Type Name Description
    String[] args

    Arguments from commandline.

    API Version
    3

    Implements

    System.IDisposable
    Back to top Copyright © 2016-2018 Samsung
    Generated by DocFX