ViewComponentDescriptor.ShortName 属性

定义

获取或设置短名称。

public:
 property System::String ^ ShortName { System::String ^ get(); void set(System::String ^ value); };
public string ShortName { get; set; }
member this.ShortName : string with get, set
Public Property ShortName As String

属性值

注解

短名称默认为视图组件类的名称。 如果视图组件类使用 ViewComponent 作为后缀,将从 中省略 ShortName后缀。

类名:Contoso.Products.LoginViewComponent View 组件 ShortName: Login
类名:Contoso.Blog.Tags 视图组件 ShortName: Tags

如果使用 Name 来设置名称,则使用“.”作为单独) (值的最后一段将用作 ShortName

[ViewComponent (Name = “Contoso.Forum.UsersOnline”) ] 公共类 OnlineUsersViewComponent { } View Component ShortName: UsersOnline

适用于