Interface ISummaryFunction
Interface for Stac Extension summary functions
Namespace: Stac.Extensions
Assembly: DotNetStac.dll
Syntax
public interface ISummaryFunction
Properties
| Improve this Doc View SourceExtension
Gets the Stac Extension associated to the summary function.
Declaration
IStacExtension Extension { get; }
Property Value
Type | Description |
---|---|
IStacExtension |
PropertyName
Gets the PropertyName of the summary function.
Declaration
string PropertyName { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceSummarize(IEnumerable<Object>)
Summarize the items.
Declaration
IStacSummaryItem Summarize(IEnumerable<object> items)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<System.Object> | items | The items to summarize. |
Returns
Type | Description |
---|---|
IStacSummaryItem | The summary item. |