Skip to content

Commit

Permalink
Merge of #653. Thanks @s-KaiNet
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenbe committed Nov 23, 2021
1 parent 93fafcc commit c136924
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Added `EnsureSiteAssetsLibrary` method on `IList` [jansenbe - Bert Jansen]
- Added support for handling images used inline of a text part on a page [jansenbe - Bert Jansen]
- Added support for .NET 6 ~ PnP Core SDK now will ship with as .NET Standard 2.0, .NET 5 and .NET 6 package [jansenbe - Bert Jansen]
- Added taxonomy field related properties. #653 [s-KaiNet - Sergei Sergeev]

### Changed

Expand Down
5 changes: 2 additions & 3 deletions src/sdk/PnP.Core/Model/SharePoint/Core/Public/IField.cs
Original file line number Diff line number Diff line change
Expand Up @@ -433,12 +433,12 @@ public interface IField : IDataModel<IField>, IDataModelGet<IField>, IDataModelL
/// <summary>
/// Gets a Boolean value that specifies whether the Term object identified by the AnchorId property is valid.
/// </summary>
public bool IsAnchorValid { get; set; }
public bool IsAnchorValid { get; }

/// <summary>
/// Gets a Boolean value that specifies whether the TermSet object identified by the TermSetId property exists and is available for tagging.
/// </summary>
public bool IsTermSetValid { get; set; }
public bool IsTermSetValid { get; }

/// <summary>
/// Gets or sets a Boolean value that specifies whether the new Term objects can be added to the TermSet while typing in the TaxonomyField editor control.
Expand Down Expand Up @@ -470,7 +470,6 @@ public interface IField : IDataModel<IField>, IDataModelGet<IField>, IDataModelL
/// </summary>
public string TargetTemplate { get; set; }


#endregion

/// <summary>
Expand Down

0 comments on commit c136924

Please sign in to comment.