ViewComponentDescriptor.FullName 属性

定义

获取或设置全名。

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

属性值

注解

全名默认为视图组件类的完整命名空间,在类名前面加上“.”字符作为分隔符。 如果视图组件类使用 ViewComponent 作为后缀,将从 中省略 FullName后缀。

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

如果使用 Name 来设置名称,则此名称将用作 FullName

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

适用于