Share via


IExtension.LocalizedName 属性

Gets the localized name of the extension to be displayed in a user interface.

命名空间:  Microsoft.ReportingServices.Interfaces
程序集:   Microsoft.ReportingServices.Interfaces(在 Microsoft.ReportingServices.Interfaces.dll 中)
  Microsoft.ReportingServices.SharePoint.UI.WebParts(在 Microsoft.ReportingServices.SharePoint.UI.WebParts.dll 中)

语法

声明
ReadOnly Property LocalizedName As String 
    Get
用法
Dim instance As IExtension 
Dim value As String 

value = instance.LocalizedName
string LocalizedName { get; }
property String^ LocalizedName {
    String^ get ();
}
abstract LocalizedName : string
function get LocalizedName () : String

属性值

类型:System.String
The localized name of the extension.

注释

The LocalizedName property is called by the report server to retrieve the localized name of the extension. Your extension should set the localized name based on the locale of the calling thread. You can use the CultureInfo class in System.Globalization namespace to discover the locale settings of the thread. For more information, see "System.Globalization Namespace" in the Microsoft .NET Framework SDK documentation.

注意注意

A Reporting Services extension class should always provide the LocalizedNameAttribute attribute. If the LocalizedNameAttribute attribute has not been applied to the extension class, the Reporting Services engine will attempt to examine the LocalizedName property of the extension class; because this requires constructing an instance of the extension, this may incur a performance penalty.

示例

The following code snippet shows the LocalizedNameAttribute being set on an extension class:

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

{

...

}

请参阅

参考

IExtension 接口

Microsoft.ReportingServices.Interfaces 命名空间

其他资源

Custom Report Item Sample