Class Attachment
Represents a message attachment found in a IUserMessage.
Inheritance
Implements
Inherited Members
Namespace: Discord
Assembly: Discord.Net.Rest.dll
Syntax
public class Attachment : IAttachment
Properties
| Improve this Doc View SourceFilename
Gets the filename of this attachment.
Declaration
public string Filename { get; }
Property Value
| Type | Description |
|---|---|
| System.String | A string containing the full filename of this attachment (e.g. |
Height
Gets the height of this attachment.
Declaration
public int? Height { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> | The height of this attachment if it is a picture; otherwise |
Id
Gets the ID of this attachment.
Declaration
public ulong Id { get; }
Property Value
| Type | Description |
|---|---|
| System.UInt64 | A snowflake ID associated with this attachment. |
ProxyUrl
Gets a proxied URL of this attachment.
Declaration
public string ProxyUrl { get; }
Property Value
| Type | Description |
|---|---|
| System.String | A string containing the proxied URL of this attachment. |
Size
Gets the file size of this attachment.
Declaration
public int Size { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The size of this attachment in bytes. |
Url
Gets the URL of this attachment.
Declaration
public string Url { get; }
Property Value
| Type | Description |
|---|---|
| System.String | A string containing the URL of this attachment. |
Width
Gets the width of this attachment.
Declaration
public int? Width { get; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> | The width of this attachment if it is a picture; otherwise |
Methods
| Improve this Doc View SourceToString()
Returns the filename of this attachment.
Declaration
public override string ToString()
Returns
| Type | Description |
|---|---|
| System.String | A string containing the filename of this attachment. |