ImplicitResourceKey.KeyPrefix Property
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.
Gets or sets the prefix for identifying a group of properties.
public:
property System::String ^ KeyPrefix { System::String ^ get(); void set(System::String ^ value); };
public string KeyPrefix { get; set; }
member this.KeyPrefix : string with get, set
Public Property KeyPrefix As String
Property Value
A String containing the prefix for an implicit resource expression.
Remarks
The KeyPrefix property ties together a collection of properties that can be assigned to a control. The KeyPrefix property refers to the value after the colon (:) in an expression, if present, and before the first period (.). For example, suppose you had an implicit resource in the following form:
<asp:label runat="server" id="label1" meta:resourcekey="Welcome"
text="Welcome"
ie:text="Welcome Internet Explorer User"
forecolor="blue"/>
This resource contains three keys, Welcome.Text
, Ie:Welcome.Text
, and Welcome.Forecolor
, that potentially have localized resource values to retrieve from the resource file or source code. Each key has "Welcome"
as the KeyPrefix value.
Applies to
See also
.NET