-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ fixed ListItemAllFields error for WebPart Pages not in lists #984
+ added CanDeploy_WebpartTo_VideoContentType_VideoPlayerPage + CSOM fix, green tests
- Loading branch information
1 parent
7022a43
commit 6195fae
Showing
6 changed files
with
170 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
using Microsoft.SharePoint.Client; | ||
|
||
namespace SPMeta2.CSOM.ModelHosts | ||
{ | ||
public class FolderModelHost : CSOMModelHostBase | ||
{ | ||
#region properties | ||
|
||
public List CurrentList { get; set; } | ||
public ListItem CurrentListItem { get; set; } | ||
|
||
public Folder CurrentListFolder { get; set; } | ||
|
||
public Web CurrentWeb { get; set; } | ||
public Folder CurrentWebFolder { get; set; } | ||
|
||
public ContentType CurrentContentType { get; set; } | ||
public Folder CurrentContentTypeFolder { get; set; } | ||
|
||
//public Folder Folder { get; set; } | ||
//public List List { get; set; } | ||
//public Web Web { get; set; } | ||
|
||
#endregion | ||
} | ||
} | ||
using Microsoft.SharePoint.Client; | ||
|
||
namespace SPMeta2.CSOM.ModelHosts | ||
{ | ||
public class FolderModelHost : CSOMModelHostBase | ||
{ | ||
#region properties | ||
|
||
public List CurrentList { get; set; } | ||
public ListItem CurrentListItem { get; set; } | ||
|
||
public Folder CurrentListFolder { get; set; } | ||
|
||
public Web CurrentWeb { get; set; } | ||
public Folder CurrentWebFolder { get; set; } | ||
|
||
public ContentType CurrentContentType { get; set; } | ||
public Folder CurrentContentTypeFolder { get; set; } | ||
|
||
//public Folder Folder { get; set; } | ||
//public List List { get; set; } | ||
//public Web Web { get; set; } | ||
|
||
public bool IsSpecialFolderContext { get; set; } | ||
|
||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters