ILocalizer.Load Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Load the localizer from a stream.
public Microsoft.Bot.Builder.FormFlow.Advanced.ILocalizer Load (System.Collections.IDictionaryEnumerator reader, out System.Collections.Generic.IEnumerable<string> missing, out System.Collections.Generic.IEnumerable<string> extra);
abstract member Load : System.Collections.IDictionaryEnumerator * seq * seq -> Microsoft.Bot.Builder.FormFlow.Advanced.ILocalizer
Public Function Load (reader As IDictionaryEnumerator, ByRef missing As IEnumerable(Of String), ByRef extra As IEnumerable(Of String)) As ILocalizer
Parameters
- reader
- IDictionaryEnumerator
Dictionary with resources.
- missing
- IEnumerable<String>
Keys found in current localizer that are not in loaded localizer.
- extra
- IEnumerable<String>
Keys found in loaded localizer that were not in current localizer.
Returns
New localizer from reader.
Remarks
Save(IResourceWriter) to see resource format.