Search Results for

    Show / Hide Table of Contents

    Class DiscordGuildDirectoryChannel

    Represents a discord guild directory channel.

    Inheritance
    System.Object
    SnowflakeObject
    DiscordChannel
    DiscordGuildDirectoryChannel
    Inherited Members
    DiscordChannel.GuildId
    DiscordChannel.ParentId
    DiscordChannel.Parent
    DiscordChannel.Name
    DiscordChannel.Type
    DiscordChannel.BannerHash
    DiscordChannel.BannerUrl
    DiscordChannel.Position
    DiscordChannel.Flags
    DiscordChannel.GetMaxPosition()
    DiscordChannel.GetMinPosition()
    DiscordChannel.IsPrivate
    DiscordChannel.IsCategory
    DiscordChannel.IsStage
    DiscordChannel.Guild
    DiscordChannel.PermissionOverwrites
    DiscordChannel.Topic
    DiscordChannel.LastMessageId
    DiscordChannel.Bitrate
    DiscordChannel.UserLimit
    DiscordChannel.PerUserRateLimit
    DiscordChannel.QualityMode
    DiscordChannel.AvailableTags
    DiscordChannel.Template
    DiscordChannel.LastPinTimestamp
    DiscordChannel.DefaultAutoArchiveDuration
    DiscordChannel.Mention
    DiscordChannel.Children
    DiscordChannel.Users
    DiscordChannel.IsNsfw
    DiscordChannel.RtcRegion
    DiscordChannel.UserPermissions
    DiscordChannel.SendMessageAsync(String)
    DiscordChannel.SendMessageAsync(DiscordEmbed)
    DiscordChannel.SendMessageAsync(String, DiscordEmbed)
    DiscordChannel.SendMessageAsync(DiscordMessageBuilder)
    DiscordChannel.SendMessageAsync(Action<DiscordMessageBuilder>)
    DiscordChannel.DeleteAsync(String)
    DiscordChannel.CloneAsync(String)
    DiscordChannel.GetMessageAsync(UInt64)
    DiscordChannel.ModifyAsync(Action<ChannelEditModel>)
    DiscordChannel.ModifyPositionAsync(Int32, String)
    DiscordChannel.ModifyPositionInCategoryAsync(Int32, String)
    DiscordChannel.RefreshPositionsAsync()
    DiscordChannel.ModifyPositionInCategorySmartAsync(String, Int32, String)
    DiscordChannel.ModifyParentAsync(DiscordChannel, Nullable<Boolean>, String)
    DiscordChannel.RemoveParentAsync(String)
    DiscordChannel.GetMessagesBeforeAsync(UInt64, Int32)
    DiscordChannel.GetMessagesAfterAsync(UInt64, Int32)
    DiscordChannel.GetMessagesAroundAsync(UInt64, Int32)
    DiscordChannel.GetMessagesAsync(Int32)
    DiscordChannel.DeleteMessagesAsync(IEnumerable<DiscordMessage>, String)
    DiscordChannel.DeleteMessageAsync(DiscordMessage, String)
    DiscordChannel.GetInvitesAsync()
    DiscordChannel.CreateInviteAsync(Int32, Int32, Boolean, Boolean, Nullable<TargetType>, Nullable<TargetActivity>, Nullable<UInt64>, String)
    DiscordChannel.OpenStageAsync(String, Boolean, StagePrivacyLevel, String)
    DiscordChannel.ModifyStageAsync(Optional<String>, Optional<StagePrivacyLevel>, String)
    DiscordChannel.CloseStageAsync(String)
    DiscordChannel.GetStageAsync()
    DiscordChannel.CreateScheduledEventAsync(String, DateTimeOffset, String, Optional<Stream>, String)
    DiscordChannel.CreateThreadAsync(String, ThreadAutoArchiveDuration, ChannelType, Nullable<Int32>, String)
    DiscordChannel.GetJoinedPrivateArchivedThreadsAsync(Nullable<UInt64>, Nullable<Int32>)
    DiscordChannel.GetPublicArchivedThreadsAsync(Nullable<UInt64>, Nullable<Int32>)
    DiscordChannel.GetPrivateArchivedThreadsAsync(Nullable<UInt64>, Nullable<Int32>)
    DiscordChannel.AddOverwriteAsync(DiscordRole, Permissions, Permissions, String)
    DiscordChannel.AddOverwriteAsync(DiscordMember, Permissions, Permissions, String)
    DiscordChannel.DeleteOverwriteAsync(DiscordMember, String)
    DiscordChannel.DeleteOverwriteAsync(DiscordRole, String)
    DiscordChannel.TriggerTypingAsync()
    DiscordChannel.GetPinnedMessagesAsync()
    DiscordChannel.CreateWebhookAsync(String, Optional<Stream>, String)
    DiscordChannel.GetWebhooksAsync()
    DiscordChannel.PlaceMemberAsync(DiscordMember)
    DiscordChannel.FollowAsync(DiscordChannel)
    DiscordChannel.CrosspostMessageAsync(DiscordMessage)
    DiscordChannel.UpdateCurrentUserVoiceStateAsync(Nullable<Boolean>, Nullable<DateTimeOffset>)
    DiscordChannel.PermissionsFor(DiscordMember)
    DiscordChannel.ToString()
    DiscordChannel.Equals(DiscordChannel)
    SnowflakeObject.Id
    SnowflakeObject.CreationTimestamp
    Namespace: DisCatSharp.Entities
    Assembly: DisCatSharp.dll
    Syntax
    public class DiscordGuildDirectoryChannel : DiscordChannel, IEquatable<DiscordChannel>, IEquatable<DiscordGuildDirectoryChannel>

    Properties

    | Improve this Doc View Source

    Entries

    Declaration
    public IReadOnlyList<DiscordGuildDirectoryEntry> Entries { get; }
    Property Value
    Type Description
    System.Collections.Generic.IReadOnlyList<DiscordGuildDirectoryEntry>

    Methods

    | Improve this Doc View Source

    Equals(DiscordGuildDirectoryChannel)

    Checks whether this DiscordGuildDirectoryChannel is equal to another DiscordGuildDirectoryChannel.

    Declaration
    public bool Equals(DiscordGuildDirectoryChannel e)
    Parameters
    Type Name Description
    DiscordGuildDirectoryChannel e

    DiscordGuildDirectoryChannel to compare to.

    Returns
    Type Description
    System.Boolean

    Whether the DiscordGuildDirectoryChannel is equal to this DiscordGuildDirectoryChannel.

    | Improve this Doc View Source

    Equals(Object)

    Checks whether this DiscordGuildDirectoryChannel is equal to another object.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    System.Object obj

    Object to compare to.

    Returns
    Type Description
    System.Boolean

    Whether the object is equal to this DiscordGuildDirectoryChannel.

    Overrides
    DiscordChannel.Equals(Object)
    | Improve this Doc View Source

    GetHashCode()

    Gets the hash code for this DiscordGuildDirectoryChannel.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32

    The hash code for this DiscordGuildDirectoryChannel.

    Overrides
    DiscordChannel.GetHashCode()

    Operators

    | Improve this Doc View Source

    Equality(DiscordGuildDirectoryChannel, DiscordGuildDirectoryChannel)

    Gets whether the two DiscordGuildDirectoryChannel objects are equal.

    Declaration
    public static bool operator ==(DiscordGuildDirectoryChannel e1, DiscordGuildDirectoryChannel e2)
    Parameters
    Type Name Description
    DiscordGuildDirectoryChannel e1

    First channel to compare.

    DiscordGuildDirectoryChannel e2

    Second channel to compare.

    Returns
    Type Description
    System.Boolean

    Whether the two channels are equal.

    | Improve this Doc View Source

    Inequality(DiscordGuildDirectoryChannel, DiscordGuildDirectoryChannel)

    Gets whether the two DiscordGuildDirectoryChannel objects are not equal.

    Declaration
    public static bool operator !=(DiscordGuildDirectoryChannel e1, DiscordGuildDirectoryChannel e2)
    Parameters
    Type Name Description
    DiscordGuildDirectoryChannel e1

    First channel to compare.

    DiscordGuildDirectoryChannel e2

    Second channel to compare.

    Returns
    Type Description
    System.Boolean

    Whether the two channels are not equal.

    Extension Methods

    ChannelExtensions.GetNextMessageAsync(DiscordChannel, Func<DiscordMessage, Boolean>, Nullable<TimeSpan>)
    ChannelExtensions.GetNextMessageAsync(DiscordChannel, Nullable<TimeSpan>)
    ChannelExtensions.GetNextMessageAsync(DiscordChannel, DiscordUser, Nullable<TimeSpan>)
    ChannelExtensions.WaitForUserTypingAsync(DiscordChannel, DiscordUser, Nullable<TimeSpan>)
    ChannelExtensions.SendPaginatedMessageAsync(DiscordChannel, DiscordUser, IEnumerable<Page>, PaginationEmojis, Nullable<PaginationBehaviour>, Nullable<PaginationDeletion>, Nullable<TimeSpan>)
    ChannelExtensions.SendPaginatedMessageAsync(DiscordChannel, DiscordUser, IEnumerable<Page>, PaginationButtons, Nullable<PaginationBehaviour>, Nullable<ButtonPaginationBehavior>, CancellationToken)
    ChannelExtensions.SendPaginatedMessageAsync(DiscordChannel, DiscordUser, IEnumerable<Page>, Nullable<PaginationBehaviour>, Nullable<ButtonPaginationBehavior>, CancellationToken)
    ChannelExtensions.SendPaginatedMessageAsync(DiscordChannel, DiscordUser, IEnumerable<Page>, PaginationButtons, Nullable<TimeSpan>, Nullable<PaginationBehaviour>, Nullable<ButtonPaginationBehavior>)
    ChannelExtensions.SendPaginatedMessageAsync(DiscordChannel, DiscordUser, IEnumerable<Page>, Nullable<TimeSpan>, Nullable<PaginationBehaviour>, Nullable<ButtonPaginationBehavior>)
    ReflectionUtilities.ToDictionary<T>(T)
    DiscordClientExtensions.ConnectAsync(DiscordChannel, LavalinkNodeConnection)
    DiscordClientExtensions.ConnectAsync(DiscordChannel)
    • Improve this Doc
    • View Source
    In This Article
    Back to top © 2021-2022 Aiko IT Systems