-
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.
Merge pull request #921 from SubPointSolutions/dev
SPMeta2 v1.2.95-beta3, October 2016
- Loading branch information
Showing
108 changed files
with
10,059 additions
and
5,946 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
663 changes: 336 additions & 327 deletions
663
SPMeta2/SPMeta2.CSOM.Standard/ModelHandlers/WebNavigationSettingsModelHandler.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
42 changes: 42 additions & 0 deletions
42
SPMeta2/SPMeta2.CSOM/ModelHandlers/DiscussionItemModelHandler.cs
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
using Microsoft.SharePoint.Client; | ||
using SPMeta2.Common; | ||
using SPMeta2.CSOM.Extensions; | ||
using SPMeta2.Definitions; | ||
using SPMeta2.Definitions.Base; | ||
using SPMeta2.Enumerations; | ||
using SPMeta2.Exceptions; | ||
using SPMeta2.ModelHandlers; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
using SPMeta2.Services; | ||
using SPMeta2.Utils; | ||
using SPMeta2.CSOM.ModelHosts; | ||
|
||
using SPMeta2.ModelHosts; | ||
|
||
namespace SPMeta2.CSOM.ModelHandlers | ||
{ | ||
public class DiscussionItemModelHandler : ListItemModelHandler | ||
{ | ||
#region properties | ||
|
||
public override Type TargetType | ||
{ | ||
get { return typeof(DiscussionItemDefinition); } | ||
} | ||
|
||
#endregion | ||
|
||
#region methods | ||
|
||
public override void DeployModel(object modelHost, DefinitionBase model) | ||
{ | ||
// TODO | ||
} | ||
|
||
#endregion | ||
} | ||
} |
42 changes: 42 additions & 0 deletions
42
SPMeta2/SPMeta2.CSOM/ModelHandlers/DiscussionReplyItemModelHandler.cs
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
using Microsoft.SharePoint.Client; | ||
using SPMeta2.Common; | ||
using SPMeta2.CSOM.Extensions; | ||
using SPMeta2.Definitions; | ||
using SPMeta2.Definitions.Base; | ||
using SPMeta2.Enumerations; | ||
using SPMeta2.Exceptions; | ||
using SPMeta2.ModelHandlers; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
using SPMeta2.Services; | ||
using SPMeta2.Utils; | ||
using SPMeta2.CSOM.ModelHosts; | ||
|
||
using SPMeta2.ModelHosts; | ||
|
||
namespace SPMeta2.CSOM.ModelHandlers | ||
{ | ||
public class DiscussionReplyItemModelHandler : ListItemModelHandler | ||
{ | ||
#region properties | ||
|
||
public override Type TargetType | ||
{ | ||
get { return typeof(DiscussionReplyItemDefinition); } | ||
} | ||
|
||
#endregion | ||
|
||
#region methods | ||
|
||
public override void DeployModel(object modelHost, DefinitionBase model) | ||
{ | ||
// TODO | ||
} | ||
|
||
#endregion | ||
} | ||
} |
Oops, something went wrong.