コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object" /> class.
 /// </summary>
 public SPSHierarchyNode(SPSHierarchyNodeType type,
                         Guid siteId,
                         Guid webId,
                         Guid listId,
                         string name,
                         string urlSegment,
                         string navigateUrl,
                         string path,
                         string imageUrl) : this(type, siteId, webId, name, urlSegment, navigateUrl, path, imageUrl)
 {
     _listId = listId;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object" /> class.
 /// </summary>
 public SPSHierarchyNode(SPSHierarchyNodeType type,
                         Guid siteId,
                         Guid webId,
                         Guid listId,
                         Guid folderId,
                         string name,
                         string openUrl,
                         string urlSegment,
                         string navigateUrl,
                         string path,
                         string imageUrl,
                         bool hasChilds)
     : this(type, siteId, webId, listId, name, openUrl, urlSegment, navigateUrl, path, imageUrl, hasChilds)
 {
     _folderId = folderId;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object" /> class.
 /// </summary>
 public SPSHierarchyNode(SPSHierarchyNodeType type,
                         Guid siteId,
                         Guid webId,
                         string name,
                         string urlSegment,
                         string navigateUrl,
                         string path,
                         string imageUrl)
 {
     _siteId      = siteId;
     _imageUrl    = imageUrl;
     _urlSegment  = urlSegment;
     _navigateUrl = navigateUrl;
     _name        = name;
     _webId       = webId;
     _path        = path;
     _type        = type;
 }