Skip to content

Latest commit

 

History

History
436 lines (419 loc) · 15.5 KB

File metadata and controls

436 lines (419 loc) · 15.5 KB

Atc.Data


AssemblyInformationFactory

Factory for creating Atc.Data.Models.AssemblyInformation instances from System.Reflection.Assembly objects.

public static class AssemblyInformationFactory

Static Methods

Create

AssemblyInformation Create(Assembly assembly)

Summary: Creates an Atc.Data.Models.AssemblyInformation instance from the specified assembly.

Parameters:
     assembly  -  The assembly to extract information from.

Returns: An Atc.Data.Models.AssemblyInformation object containing assembly metadata.


DataFactory

Data Helper.

public static class DataFactory

Static Methods

CreateKeyValueDataTableOfGuidString

DataTable CreateKeyValueDataTableOfGuidString(DropDownFirstItemType dropDownFirstItemType = None)

Summary: Create the key/value data table of global identifier and string.

Parameters:
     dropDownFirstItemType  -  Type of the dropdown first item.

Returns: The System.Data.DataTable.

CreateKeyValueDataTableOfIntString

DataTable CreateKeyValueDataTableOfIntString(DropDownFirstItemType dropDownFirstItemType = None)

Summary: Create the key/value data table of integer and string.

Parameters:
     dropDownFirstItemType  -  Type of the dropdown first item.

Returns: The System.Data.DataTable.

CreateKeyValueDictionaryOfGuidString

Dictionary<Guid, string> CreateKeyValueDictionaryOfGuidString(DropDownFirstItemType dropDownFirstItemType = None)

Summary: Create the key/value dictionary of global identifier and string.

Parameters:
     dropDownFirstItemType  -  Type of the dropdown first item.

Returns: The Dictionary.

CreateKeyValueDictionaryOfIntString

Dictionary<int, string> CreateKeyValueDictionaryOfIntString(DropDownFirstItemType dropDownFirstItemType = None)

Summary: Create the key/value dictionary of integer and string.

Parameters:
     dropDownFirstItemType  -  Type of the dropdown first item.

Returns: The Dictionary.

CreateKeyValueDictionaryOfStringString

Dictionary<string, string> CreateKeyValueDictionaryOfStringString(DropDownFirstItemType dropDownFirstItemType = None)

Summary: Creates the key value dictionary of string string.

Parameters:
     dropDownFirstItemType  -  Type of the dropdown first item.

Returns: The Dictionary.


LogItemFactory

Factory for creating Atc.Data.Models.LogItem and Atc.Data.Models.LogKeyValueItem instances. Provides convenient methods for creating log items with different severity levels.

public static class LogItemFactory

Static Methods

Create

LogItem Create(LogCategoryType logCategoryType, string message)

Summary: Creates a new Atc.Data.Models.LogItem with the specified log category and message.

Parameters:
     logCategoryType  -  The log category type.
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance.

Create

LogKeyValueItem Create(LogCategoryType logCategoryType, string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with the specified log category and message.

Parameters:
     logCategoryType  -  The log category type.
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance.

Create

LogKeyValueItem Create(LogCategoryType logCategoryType, string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with the specified log category and message.

Parameters:
     logCategoryType  -  The log category type.
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance.

CreateAudit

LogItem CreateAudit(string message)

Summary: Creates a new Atc.Data.Models.LogItem with audit severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with audit severity.

CreateAudit

LogKeyValueItem CreateAudit(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with audit severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with audit severity.

CreateAudit

LogKeyValueItem CreateAudit(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with audit severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with audit severity.

CreateCritical

LogItem CreateCritical(string message)

Summary: Creates a new Atc.Data.Models.LogItem with critical severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with critical severity.

CreateCritical

LogKeyValueItem CreateCritical(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with critical severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with critical severity.

CreateCritical

LogKeyValueItem CreateCritical(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with critical severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with critical severity.

CreateDebug

LogItem CreateDebug(string message)

Summary: Creates a new Atc.Data.Models.LogItem with debug severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with debug severity.

CreateDebug

LogKeyValueItem CreateDebug(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with debug severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with debug severity.

CreateDebug

LogKeyValueItem CreateDebug(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with debug severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with debug severity.

CreateError

LogItem CreateError(string message)

Summary: Creates a new Atc.Data.Models.LogItem with error severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with error severity.

CreateError

LogKeyValueItem CreateError(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with error severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with error severity.

CreateError

LogKeyValueItem CreateError(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with error severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with error severity.

CreateInformation

LogItem CreateInformation(string message)

Summary: Creates a new Atc.Data.Models.LogItem with information severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with information severity.

CreateInformation

LogKeyValueItem CreateInformation(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with information severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with information severity.

CreateInformation

LogKeyValueItem CreateInformation(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with information severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with information severity.

CreateSecurity

LogItem CreateSecurity(string message)

Summary: Creates a new Atc.Data.Models.LogItem with security severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with security severity.

CreateSecurity

LogKeyValueItem CreateSecurity(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with security severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with security severity.

CreateSecurity

LogKeyValueItem CreateSecurity(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with security severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with security severity.

CreateService

LogItem CreateService(string message)

Summary: Creates a new Atc.Data.Models.LogItem with service severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with service severity.

CreateService

LogKeyValueItem CreateService(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with service severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with service severity.

CreateService

LogKeyValueItem CreateService(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with service severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with service severity.

CreateTrace

LogItem CreateTrace(string message)

Summary: Creates a new Atc.Data.Models.LogItem with trace severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with trace severity.

CreateTrace

LogKeyValueItem CreateTrace(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with trace severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with trace severity.

CreateTrace

LogKeyValueItem CreateTrace(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with trace severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with trace severity.

CreateUi

LogItem CreateUi(string message)

Summary: Creates a new Atc.Data.Models.LogItem with UI severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with UI severity.

CreateUi

LogKeyValueItem CreateUi(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with UI severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with UI severity.

CreateUi

LogKeyValueItem CreateUi(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with UI severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with UI severity.

CreateWarning

LogItem CreateWarning(string message)

Summary: Creates a new Atc.Data.Models.LogItem with warning severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with warning severity.

CreateWarning

LogKeyValueItem CreateWarning(string key, string value)

Summary: Creates a new Atc.Data.Models.LogItem with warning severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with warning severity.

CreateWarning

LogKeyValueItem CreateWarning(string key, string value, string description)

Summary: Creates a new Atc.Data.Models.LogItem with warning severity.

Parameters:
     message  -  The log message.

Returns: A new Atc.Data.Models.LogItem instance with warning severity.


Generated by MarkdownCodeDoc version 1.2