Unvired.Kernel.UWP.Core Namespace |
| Class | Description | |
|---|---|---|
| ApplicationManager |
ApplicationManager provides information about the application, application meta data and access to the application's data manager.
| |
| FrameworkManager | ||
| FrameworkSettingsManager | ||
| RuntimeEngine |
RuntimeEngine is used to initialize the application when the application starts.
Initializing the application when the application starts is mandatory. Without the
initialization the application cannot function.
Usage:Call the function initialize(...) before:
Example:string appName = "SAP_ERP_SO_TEMPLATE"; string assemblyName = GetType().GetTypeInfo().Assembly.FullName; (using System.Reflection;) string EntityNamespace = "Entity"; (Namespace of BusinessEntity classes) using (XmlReader xr = XmlReader.Create(@"metadata.xml")) { XDocument metadataXml = XDocument.Load(xr); } RuntimeEngine runtimeEngine = RuntimeEngine.Instance; runtimeEngine.initialize(appName, metaDataXml,assemblyName,EntityNamespace); | |
| UserSettingsManager |
UserSettingsManager provides information about the user which include Unvired user id, ADS user id, SAP user id, Domain, URL, Login Type etc.
|
| Enumeration | Description | |
|---|---|---|
| FrameworkSettingsManagerConflictRule |