Class ProcessSubContentEventArgs
Event args which are used by the ProcessSubContent event
Inherited Members
Namespace: SdlSdl.FileTypeSupportFrameworkNativeApi
Assembly: Sdl.FileTypeSupport.Framework.Core.dll
Syntax
public class ProcessSubContentEventArgs : EventArgs
Constructors
ProcessSubContentEventArgs(string, Stream)
Constructor
Declaration
public ProcessSubContentEventArgs(string fileTypeDefinitionId, Stream subContentStream)
Parameters
Type | Name | Description |
---|---|---|
string | fileTypeDefinitionId | |
Stream | subContentStream |
Properties
FileTypeDefinitionId
FileTypeDefinitionId - used to define the sub-content parser to use for this particular sub-content stream
Declaration
public string FileTypeDefinitionId { get; set; }
Property Value
Type | Description |
---|---|
string |
SubContentStream
SubContentStream - stream referencing the sub-content to be parsed
Declaration
public Stream SubContentStream { get; set; }
Property Value
Type | Description |
---|---|
Stream |