Interface IStreamCommand
If a command implements this interface then when its handler is executed it will have the Stream property set to the input of the function that was triggered with the stream. For example a blob triggered function.
This can be useful when you want to handle large blobs or the content of the blob is not known in advance.
Namespace: FunctionMonkey.Commanding.Abstractions
Assembly: FunctionMonkey.Commanding.Abstractions.dll
Syntax
public interface IStreamCommand
Properties
| Improve this Doc View SourceName
The name of the item (e.g. blob name). This may be null if the stream is not associated with something with a name.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
System. |
Stream
Stream to the item
Declaration
Stream Stream { get; set; }
Property Value
Type | Description |
---|---|
Stream |