BamlLocalizableResource Class
.NET Framework 4.5
Represents a localizable resource in a BAML stream.
Namespace:
System.Windows.Markup.Localizer
Assembly: PresentationFramework (in PresentationFramework.dll)
XMLNS for XAML: Not mapped to an xmlns.
The BamlLocalizableResource type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | BamlLocalizableResource() | Initializes a new instance of the BamlLocalizableResource class. |
![]() | BamlLocalizableResource(String, String, LocalizationCategory, Boolean, Boolean) | Initializes a new instance of the BamlLocalizableResource class, with the specified localizable value, localization comments, resource category, localization lock status, and visibility of the resource. |
| Name | Description | |
|---|---|---|
![]() | Category | Gets or sets the localization category of a resource. |
![]() | Comments | Gets or sets the localization comments associated with a resource. |
![]() | Content | Gets or sets the localizable content. |
![]() | Modifiable | Gets or sets a value that indicates whether the localizable resource is modifiable. |
![]() | Readable | Gets or sets whether the resource is visible for translation. |
| Name | Description | |
|---|---|---|
![]() | Equals | Determines whether a specified BamlLocalizableResource object is equal to this object. (Overrides Object.Equals(Object).) |
![]() | 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 | Returns an integer hash code representing this instance. (Overrides Object.GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
The BamlLocalizableResource class is the value component of the key-value pairs found in a BamlLocalizationDictionary.
The following example demonstrates how to use a BamlLocalizableResource.
// 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.
