Skip to content

Commit 6a7695a

Browse files
committed
added some xmldocs to Value<>()
1 parent 82e0d29 commit 6a7695a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Nest/Domain/Aggregations/ScriptedValueMetric.cs

+4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ public class ScriptedValueMetric : IMetricAggregation
1111
{
1212
internal object _Value { get; set; }
1313

14+
/// <summary>
15+
/// Get the resut of the scripted metric aggregation as T
16+
/// </summary>
17+
/// <typeparam name="T">The type that best represents the result of your scripted metric aggrgation</typeparam>
1418
public T Value<T>()
1519
{
1620
var jToken = this._Value as JToken;

0 commit comments

Comments
 (0)