Класс LocalizedNameAttribute
Provides the localized name of an extension.
Иерархия наследования
System.Object
System.Attribute
Microsoft.ReportingServices.Interfaces.LocalizedNameAttribute
Пространство имен: Microsoft.ReportingServices.Interfaces
Сборки: Microsoft.ReportingServices.Interfaces (в Microsoft.ReportingServices.Interfaces.dll)
Microsoft.ReportingServices.SharePoint.UI.WebParts (в Microsoft.ReportingServices.SharePoint.UI.WebParts.dll)
Синтаксис
'Декларация
<AttributeUsageAttribute(AttributeTargets.All)> _
Public Class LocalizedNameAttribute _
Inherits Attribute
'Применение
Dim instance As LocalizedNameAttribute
[AttributeUsageAttribute(AttributeTargets.All)]
public class LocalizedNameAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::All)]
public ref class LocalizedNameAttribute : public Attribute
[<AttributeUsageAttribute(AttributeTargets.All)>]
type LocalizedNameAttribute =
class
inherit Attribute
end
public class LocalizedNameAttribute extends Attribute
Тип LocalizedNameAttribute обеспечивает доступ к следующим элементам.
Конструкторы
Имя | Описание | |
---|---|---|
LocalizedNameAttribute() | Initializes a new instance of the LocalizedNameAttribute class. | |
LocalizedNameAttribute(String) | Initializes a new instance of the LocalizedNameAttribute class. |
В начало
Свойства
Имя | Описание | |
---|---|---|
Name | Gets the localized name of the extension. | |
TypeId | (Производный от Attribute.) |
В начало
Методы
Имя | Описание | |
---|---|---|
Equals | Determines if the object supplied is the same as the current object. (Переопределяет Attribute.Equals(Object).) | |
Finalize | (Производный от Object.) | |
GetHashCode | Returns a unique hash code for the object. (Переопределяет Attribute.GetHashCode().) | |
GetLocalizedString | Returns the correct localized extension name. | |
GetType | (Производный от Object.) | |
IsDefaultAttribute | (Производный от Attribute.) | |
Match | (Производный от Attribute.) | |
MemberwiseClone | (Производный от Object.) | |
ToString | (Производный от Object.) |
В начало
Явные реализации интерфейса
Имя | Описание | |
---|---|---|
_Attribute.GetIDsOfNames | (Производный от Attribute.) | |
_Attribute.GetTypeInfo | (Производный от Attribute.) | |
_Attribute.GetTypeInfoCount | (Производный от Attribute.) | |
_Attribute.Invoke | (Производный от Attribute.) |
В начало
Замечания
The LocalizedNameAttribute class allows the caller to determine the localized name of the extension without loading the extension.
Note To give the extension a name which is dependent on the user's language, you must override the GetLocalizedString method.
Примеры
The following code snippet shows the LocalizedNameAttribute being set on an extension class:
[C#]
namespace PolygonsCRI
{
[LocalizedName("Polygons")]
[Editor(typeof(CustomEditor), typeof(ComponentEditor))]
[ToolboxBitmap(typeof(PolygonsDesigner),"Polygons.ico")]
// this CRI-specific attribute sets the name of the
// custom report item which is referenced by the config
// files and saved in the report definition language
[CustomReportItem("Polygons")]
// the main class for our CRI design-time component
public class PolygonsDesigner : CustomReportItemDesigner
{
...
}
Безопасность многопоточности
Любые открытые статический (Shared в Visual Basic) элементы этого типа потокобезопасны. Потокобезопасность с элементами экземпляров не гарантируется.
См. также
Справочник
Пространство имен Microsoft.ReportingServices.Interfaces