C# Class XWiki.XmlRpc.Attachment

Contains the attributes of a page.
Show file Open project: xwiki-contrib/xwiki-office Class Usage Examples

Public Properties

Property Type Description
comment String
contentType String
created System.DateTime
creator String
fileName String
fileSize String
pageId String
title String
url String

Public Methods

Method Description
Attachment ( String _pageId ) : System

Constructor, initializes the fields with the default values. Creates a new Attacment instance. The name of the document containing the attachment.

Method Details

Attachment() public method

Constructor, initializes the fields with the default values. Creates a new Attacment instance. The name of the document containing the attachment.
public Attachment ( String _pageId ) : System
_pageId String
return System

Property Details

comment public property

Comment on file attachment.
public String comment
return String

contentType public property

The mime-type of the attachment.
public String contentType
return String

created public property

The date when the file was created.
public DateTime,System created
return System.DateTime

creator public property

The user that attached the file.
public String creator
return String

fileName public property

The name of the file.
public String fileName
return String

fileSize public property

Filesize in bytes.
public String fileSize
return String

pageId public property

The id of the page: '[wiki:]Space.page[?param1=value1..]'
public String pageId
return String

title public property

The title of the attachment.
public String title
return String

url public property

The download url for the attachment.
public String url
return String