Interface ISearchableResourceProvider
Interface for searchable resource providers classes Resource providers that need to return a list of resources for a given search string should implement this
Namespace: SuperOffice.Globalization
Assembly: SuperOffice.Plugins.dll
Syntax
public interface ISearchableResourceProvider : IPlugin
Methods
FindResourceStrings(String, String)
Returns all resource strings containing searchString in the specified culture
Declaration
string[] FindResourceStrings(string searchString, string cultureName)
Parameters
Type | Name | Description |
---|---|---|
String | searchString | The string to search for, case insensitive |
String | cultureName | The name of the culture in the form en-US, nb-NO |
Returns
Type | Description |
---|---|
String[] | Array of resource names matching searchString |
Extension Methods
EnumUtil.MapEnums<From, To>(From)