Class StreamMetaData
This class holds meta data about the current progress of the source.
Inheritance
System.Object
StreamMetaData
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: ETLBox.DataFlow
Assembly: ETLBox.dll
Syntax
public class StreamMetaData
Properties
HttpRequestMessage
Declaration
public HttpRequestMessage HttpRequestMessage { get; set; }
Property Value
Type | Description |
---|---|
System.Net.Http.HttpRequestMessage |
ProcessedRows
Amounts of rows processed in the last request
Declaration
public int ProcessedRows { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
ProgressCount
Number of currently processed items
Declaration
public int ProgressCount { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
UnparsedData
Unparsed meta data from the response. E.g. this could be unparsed json that holds the links to the next page of the response.
Declaration
public string UnparsedData { get; set; }
Property Value
Type | Description |
---|---|
System.String |