Search Results for

    Show / Hide Table of Contents

    Interface ITermStore

    Microsoft 365 Term store

    Inherited Members
    IDataModel<ITermStore>.Requested
    IDataModel<ITermStore>.HasValue(string)
    IDataModel<ITermStore>.HasChanged(string)
    IDataModel<ITermStore>.IsPropertyAvailable(Expression<Func<ITermStore, object>>)
    IDataModel<ITermStore>.ArePropertiesAvailable(params Expression<Func<ITermStore, object>>[])
    IDataModel<ITermStore>.EnsureProperties(params Expression<Func<ITermStore, object>>[])
    IDataModel<ITermStore>.EnsurePropertiesAsync(params Expression<Func<ITermStore, object>>[])
    IDataModel<ITermStore>.ExecuteRequestAsync(ApiRequest)
    IDataModel<ITermStore>.ExecuteRequest(ApiRequest)
    IDataModel<ITermStore>.ExecuteRequestBatchAsync(ApiRequest)
    IDataModel<ITermStore>.ExecuteRequestBatch(ApiRequest)
    IDataModel<ITermStore>.ExecuteRequestBatchAsync(Batch, ApiRequest)
    IDataModel<ITermStore>.ExecuteRequestBatch(Batch, ApiRequest)
    IDataModelParent.Parent
    IDataModelWithContext.PnPContext
    IDataModelGet<ITermStore>.GetBatchAsync(Batch, params Expression<Func<ITermStore, object>>[])
    IDataModelGet<ITermStore>.GetAsync(params Expression<Func<ITermStore, object>>[])
    IDataModelLoad<ITermStore>.LoadBatchAsync(Batch, params Expression<Func<ITermStore, object>>[])
    IDataModelLoad<ITermStore>.LoadAsync(params Expression<Func<ITermStore, object>>[])
    IDataModelUpdate.UpdateBatchAsync()
    IDataModelUpdate.UpdateBatchAsync(Batch)
    IDataModelUpdate.UpdateAsync()
    IDataModelUpdate.UpdateBatch()
    IDataModelUpdate.UpdateBatch(Batch)
    IDataModelUpdate.Update()
    Namespace: PnP.Core.Model.SharePoint
    Assembly: PnP.Core.dll
    Syntax
    public interface ITermStore : IDataModel<ITermStore>, IDataModelParent, IDataModelWithContext, ISupportModules<ITermStore>, IDataModelGet<ITermStore>, IDataModelLoad<ITermStore>, IDataModelUpdate

    Properties

    DefaultLanguage

    Default language of the termstore.

    Declaration
    string DefaultLanguage { get; set; }
    Property Value
    string

    Groups

    Collection of term groups in this term store Implements IQueryable<T>.
    See Requesting model collections and IQueryable performance considerations to learn more.

    Declaration
    ITermGroupCollection Groups { get; }
    Property Value
    ITermGroupCollection

    Id

    The Unique ID of the Term Store

    Declaration
    string Id { get; }
    Property Value
    string

    Languages

    List of languages for the term store.

    Declaration
    List<string> Languages { get; }
    Property Value
    List<string>

    Methods

    GetTermById(string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    ITerm GetTermById(string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    ITerm

    The loaded term

    GetTermByIdAsync(string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    Task<ITerm> GetTermByIdAsync(string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    Task<ITerm>

    The loaded term

    GetTermByIdBatch(Batch, string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    ITerm GetTermByIdBatch(Batch batch, string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    Batch batch

    Batch to add this reques to

    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    ITerm

    The loaded term

    GetTermByIdBatch(string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    ITerm GetTermByIdBatch(string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    ITerm

    The loaded term

    GetTermByIdBatchAsync(Batch, string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    Task<ITerm> GetTermByIdBatchAsync(Batch batch, string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    Batch batch

    Batch to add this reques to

    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    Task<ITerm>

    The loaded term

    GetTermByIdBatchAsync(string, string, params Expression<Func<ITerm, object>>[])

    Gets a term from this termstore via it's id and it's termset id

    Declaration
    Task<ITerm> GetTermByIdBatchAsync(string termSetId, string termId, params Expression<Func<ITerm, object>>[] selectors)
    Parameters
    string termSetId

    Termset id of the termset containing the term

    string termId

    Term id of the term to retrieve

    Expression<Func<ITerm, object>>[] selectors

    Properties to load for the term

    Returns
    Task<ITerm>

    The loaded term

    GetTermSetById(string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    ITermSet GetTermSetById(string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    ITermSet

    The loaded termset

    GetTermSetByIdAsync(string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    Task<ITermSet> GetTermSetByIdAsync(string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    Task<ITermSet>

    The loaded termset

    GetTermSetByIdBatch(Batch, string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    ITermSet GetTermSetByIdBatch(Batch batch, string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    Batch batch

    Batch to add this reques to

    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    ITermSet

    The loaded termset

    GetTermSetByIdBatch(string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    ITermSet GetTermSetByIdBatch(string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    ITermSet

    The loaded termset

    GetTermSetByIdBatchAsync(Batch, string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    Task<ITermSet> GetTermSetByIdBatchAsync(Batch batch, string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    Batch batch

    Batch to add this reques to

    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    Task<ITermSet>

    The loaded termset

    GetTermSetByIdBatchAsync(string, params Expression<Func<ITermSet, object>>[])

    Gets a termset from this termstore via it's id

    Declaration
    Task<ITermSet> GetTermSetByIdBatchAsync(string id, params Expression<Func<ITermSet, object>>[] selectors)
    Parameters
    string id

    Termset id to retrieve

    Expression<Func<ITermSet, object>>[] selectors

    Properties to load for the termset

    Returns
    Task<ITermSet>

    The loaded termset

    Extension Methods

    DataModelGetExtensions.GetBatchAsync<TModel>(IDataModelGet<TModel>, Batch, params Expression<Func<TModel, object>>[])
    DataModelGetExtensions.GetBatchAsync<TModel>(IDataModelGet<TModel>, params Expression<Func<TModel, object>>[])
    DataModelGetExtensions.GetBatch<TModel>(IDataModelGet<TModel>, Batch, params Expression<Func<TModel, object>>[])
    DataModelGetExtensions.GetBatch<TModel>(IDataModelGet<TModel>, params Expression<Func<TModel, object>>[])
    DataModelGetExtensions.Get<TModel>(IDataModelGet<TModel>, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.LoadBatchAsync<TModel>(IDataModelLoad<TModel>, Batch, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.LoadBatchAsync<TModel>(IDataModelLoad<TModel>, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.LoadBatch<TModel>(IDataModelLoad<TModel>, Batch, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.LoadBatch<TModel>(IDataModelLoad<TModel>, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.Load<TModel>(IDataModelLoad<TModel>, params Expression<Func<TModel, object>>[])
    DataModelLoadExtensions.QueryProperties<TModel>(IDataModelLoad<TModel>, params Expression<Func<TModel, object>>[])
    RequestModuleExtensions.WithHeaders<TModel>(ISupportModules<TModel>, Dictionary<string, string>, Action<Dictionary<string, string>>)
    RequestModuleExtensions.WithResponseHeaders<TModel>(ISupportModules<TModel>, Action<Dictionary<string, string>>)
    Back to top PnP Core SDK
    Generated by DocFX with Material UI
    spacer