persistent class Ens.StreamContainer
extends %Persistent, Ens.Util.MessageBodyMethods, %XML.Adaptor
This class is a persistent object that transparently encapsulates any type of persistable stream object
property Attributes
as array of %String(MAXLEN="");
An array of strings containing any attribute values
property OriginalFilename
as %String(MAXLEN="");
property OutputFilename
as %String(MAXLEN="");
This property can be used to store a filename to be used on output
Used for example in the EnsLib.MFT.Operation.Passthrough
property OutputFolder
as %String(MAXLEN="");
This property can be used to store a folder identifier to be used on output.
Used for example in the EnsLib.MFT.Operation.Passthrough
property Stream
as %Stream.Object [ Calculated,Transient ];
property Type
as %String(MAXLEN=2) [ ReadOnly ];
method SetAttributes(ByRef pAttributes)
Set values into the Attributes array property
Pass in an array object, a ObjectScript array, a ObjectScript array reference, a %AbstractStream with its own Attributes to copy from, a %Net.HttpResponse object with its own Headers to copy from, or a string of the form 'a=1,b=2,c=3'.
method StreamGet()
as %Stream.Object
This is a Get accessor method for the Stream property.
method StreamSet(pInput As %Stream.Object)
as %Status
This is a Set accessor method for the Stream property.
trigger OnDelete
(BEFORE event DELETE)