Interface ITeamChannel
Defines a Channel of Microsoft Teams
Inherited Members
Namespace: PnP.Core.Model.Teams
Assembly: PnP.Core.dll
Syntax
public interface ITeamChannel : IDataModel<ITeamChannel>, IDataModelParent, IDataModelWithContext, ISupportModules<ITeamChannel>, IDataModelGet<ITeamChannel>, IDataModelLoad<ITeamChannel>, IDataModelUpdate, IDataModelDelete, IQueryableDataModel
Properties
CreatedDateTime
Timestamp at which the channel was created
Declaration
DateTime CreatedDateTime { get; }
Property Value
DateTime
|
Description
The description of the Team Channel
Declaration
string Description { get; set; }
Property Value
System.String
|
DisplayName
The display name of the Team Channel
Declaration
string DisplayName { get; set; }
Property Value
System.String
|
The email address of the Team Channel
Declaration
string Email { get; }
Property Value
System.String
|
FilesFolderWebUrl
The fully qualified url for the SharePoint folder hosting this channel's files (uses Graph Beta)
Declaration
Uri FilesFolderWebUrl { get; }
Property Value
Uri
|
Id
The Unique ID of the Team Channel
Declaration
string Id { get; }
Property Value
System.String
|
IsFavoriteByDefault
Defines whether the Team Channel is favorite by default in the Team
Declaration
bool IsFavoriteByDefault { get; set; }
Property Value
System.Boolean
|
MembershipType
Defines the Membership type for the Team Channel
Declaration
TeamChannelMembershipType MembershipType { get; set; }
Property Value
TeamChannelMembershipType
|
Messages
Messages in this Team Channel
Implements
See Requesting model collections
and IQueryable performance considerations to learn more.
Declaration
ITeamChatMessageCollection Messages { get; }
Property Value
ITeamChatMessageCollection
|
Tabs
Tabs in this Channel
Implements
See Requesting model collections
and IQueryable performance considerations to learn more.
Declaration
ITeamChannelTabCollection Tabs { get; }
Property Value
ITeamChannelTabCollection
|
WebUrl
The Web URL of the Team Channel
Declaration
Uri WebUrl { get; }
Property Value
Uri
|