IForm<T>.Localize 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.
Localize all string resources from binary stream.
public abstract void Localize (System.Collections.IDictionaryEnumerator reader, out System.Collections.Generic.IEnumerable<string> missing, out System.Collections.Generic.IEnumerable<string> extra);
abstract member Localize : System.Collections.IDictionaryEnumerator * seq * seq -> unit
Public MustOverride Sub Localize (reader As IDictionaryEnumerator, ByRef missing As IEnumerable(Of String), ByRef extra As IEnumerable(Of String))
Parameters
- reader
- IDictionaryEnumerator
Where to read resources.
- missing
- IEnumerable<String>
[out] Any values in the form, but missing from the stream.
- extra
- IEnumerable<String>
[out] Any values in the stream, but missing from the form.
Remarks
When you localize all form string resources will be overridden if present in the stream. Otherwise the value will remain unchanged.