Difference between revisions of "Attachment class"
Nguyenduyan (talk | contribs) |
Nguyenduyan (talk | contribs) |
||
Line 41: | Line 41: | ||
|Description=<nowiki>Get all of the attachments associated with the resource.</nowiki>}} | |Description=<nowiki>Get all of the attachments associated with the resource.</nowiki>}} | ||
}} | }} | ||
+ | (see more at: [[Attachment_getChildAttachments]]) |
Revision as of 10:13, 16 July 2018
Attachment
Represents an attachment object.
Constructors
- (int resourceId "ResourceId of existing attachment.") - Fetch existing attachment.
- (int parentResourceId "ParentResourceId of existing attachment.", string name "Name of existing attachment.") - Fetch existing attachment.
- (string name "Resource name. If set to empty, the name is taken from the downloaded or copied file.", int parentResourceId "Parent resource.") - Create new attachment.
Methods
- string ReadContentAsString() - Load the content of the file as a string.
- Empty SaveFromDownload(WebResponse response "Response from HttpRequest") - Download from an HttpRequest's response.
- Empty SaveFromFileCopy(string filename "Name of the file", bool isTemp "Is the file temporary") - Copy from an already stored file using Catglobe.File.
- Empty SaveFromString(string filename "Name of the file", string content "Content of the file") - Save from a string.
- string ToString() - The string representation of the object.
Properties
- int CreatedByUserResourceId { get; } - Get CreatedByUserResourceId
- DateTime CreatedDate { get; } - Get CreatedDate
- int FileSize { get; } - The size of the file on disk
- string InlineImageSrc { get; } - The uri to use in mails when inlining images
- int ModifiedByUserResourceId { get; } - Get ModifiedByUserResourceId
- DateTime ModifiedDate { get; } - Get ModifiedDate
- string Name { get; set; } - Resource name. If set to empty, the name is taken from the downloaded or copied file.
- string ObjectTypeName { get; } - The name of the type of object.
- string PublicUrl { get; } - Url to use to download for anyone
- int ResourceId { get; } - The Id of the Attachment
- TypeInformation TypeInformation { get; } - Get information about this class.
Static Methods
- Array of objects Attachment_getChildAttachments(int parentResourceId "Parent resource.") - Get all of the attachments associated with the resource.
(see more at: Attachment_getChildAttachments)