Toggle menu
862
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Attachment class: Difference between revisions

From Catglobe Wiki
No edit summary
No edit summary
Line 28: Line 28:
}}
}}


** NOTE : can't use with mail template, bulk mail
NOTE : can't use with mail template, bulk mail

Revision as of 03:09, 18 September 2014

Attachment



Represents an attachment object

Constructors

  • (number resourceId "ResourceId of existing attachment") - Fetch existing attachment
  • (string name "Resource name. If set to empty, the name is taken from the downloaded or copied file"number parentResourceId "Parent resource") - Create new attachment

Methods

  • array GetChildAttachments(number parentResourceId "Parent resource") - Get all of the attachments associated with the resource
  • Empty SaveFromDownload(WebResponse response "Response from HttpRequest") - Download from an HttpRequest's response
  • Empty SaveFromFileCopy(string name "Name of the file"bool isTemp "Is the file temporary") - Copy from an already stored file using Catglobe.File
  • string ToString() - The string representation of the object.

Properties

  • number FileSize { get; } - The size of the file on disc
  • 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
  • number ResourceId { get; } - The Id of the Attachment
  • TypeInformation TypeInformation { get; } - Get information about this class.


NOTE : can't use with mail template, bulk mail