Interface ITitleMappingDal
Title Mapping data access layer.
Namespace: CrashCABN.DataAccess
Assembly: CrashCABN.DataAccess.Abstractions.dll
Syntax
public interface ITitleMappingDal
Methods
View SourceGetTitleNameAsync(String, String)
Gets an enumaration of title names that match the provided process name.
Declaration
IAsyncEnumerable<TitleMapping> GetTitleNameAsync(string packageName, string processName)
Parameters
Type | Name | Description |
---|---|---|
System.String | packageName | The package name to match. |
System.String | processName | The process name to match. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IAsyncEnumerable<TitleMapping> | An async enumeration of matching title mappings. |