BamlLocalizer Class
.NET Framework 4.5
Extracts resources from a BAML file and generates a localized version of a BAML source.
Namespace: System.Windows.Markup.Localizer
Assembly: PresentationFramework (in PresentationFramework.dll)
The BamlLocalizer type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | BamlLocalizer(Stream) | Initializes a new instance of the BamlLocalizer class with the specified BAML source stream. |
![]() | BamlLocalizer(Stream, BamlLocalizabilityResolver) | Initializes a new instance of the BamlLocalizer class with the specified localizability resolver and BAML source stream. |
![]() | BamlLocalizer(Stream, BamlLocalizabilityResolver, TextReader) | Initializes a new instance of the BamlLocalizer class with the specified localizability resolver, BAML source stream, and TextReader. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | ExtractResources | Extracts all localizable resources from a BAML stream. |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | OnErrorNotify | Raises the ErrorNotify event. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | UpdateBaml | Applies resource updates to the BAML source and writes the updated version to a specified stream in order to create a localized version of the source BAML. |
The following example demonstrates how to use a BamlLocalizer.
// Obtain the BAML stream. Stream source = entry.Value as Stream; // Create a BamlLocalizer on the stream. BamlLocalizer localizer = new BamlLocalizer(source); BamlLocalizationDictionary resources = localizer.ExtractResources(); // Write out all the localizable resources in the BAML. foreach (DictionaryEntry resourceEntry in resources) { BamlLocalizableResourceKey key = resourceEntry.Key as BamlLocalizableResourceKey; BamlLocalizableResource value = resourceEntry.Value as BamlLocalizableResource; Console.WriteLine( " {0}.{1}.{2} = {3}", key.Uid, key.ClassName, key.PropertyName, value.Content ); }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
