📄 clientpropertynameattribute.cs
字号:
// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Permissive License.
// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx.
// All other rights reserved.
using System;
namespace AjaxControlToolkit
{
/// <summary>
/// Allows the mapping of a property declared in managed code to a property
/// declared in client script. For example, if the client script property is named "handle" and you
/// prefer the name on the TargetProperties object to be "Handle", you would apply this attribute with the value "handle."
/// </summary>
[AttributeUsage(AttributeTargets.Property)]
public sealed class ClientPropertyNameAttribute : Attribute
{
private string _propertyName;
public ClientPropertyNameAttribute()
{
}
/// <summary>
/// Creates an instance of the ClientPropertyNameAttribute and initializes
/// the PropertyName value.
/// </summary>
/// <param name="propertyName">The name of the property in client script that you wish to map to.</param>
public ClientPropertyNameAttribute(string propertyName)
{
_propertyName = propertyName;
}
/// <summary>
/// The name of the property in client script code that you wish to map to.
/// </summary>
public string PropertyName
{
get { return _propertyName; }
}
public override bool IsDefaultAttribute()
{
return string.IsNullOrEmpty(PropertyName);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -