ViewComponentDescriptor.FullName 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置全名。
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