Click or drag to resize

ItemsetFilePropertyViaStream Method

Set a file stream to an item reference.

Namespace:  Aras.IOM
Assembly:  IOM (in IOM.dll) Version: 14.0.20.39432
Syntax
public Item setFilePropertyViaStream(
	string propertyName,
	string fileName,
	Stream stream
)

Parameters

propertyName
Type: SystemString
name of property of type File for which new physical file should be set
fileName
Type: SystemString
name of the file which should be attached to property of the item
stream
Type: System.IOStream
stream with the file content which should be uploaded to Vault server

Return Value

Type: Item
Item of type File generated by method
Exceptions
ExceptionCondition
ArgumentNullException
  • Agrument "propertyName" is null or empty.
  • Agrument "fileName" is null or empty.
  • Agrument "stream" is null.
Remarks
This method will allow to add/update a value of property with data type Item and data source File. Internally it will be created an item "File" with action "add" and set this new item to the property with name "propertyName". When Apply method would be called on the container item, new file will uploaded to the user's default vault server.
See Also