1
1
using OpenFeatureSDK . Constant ;
2
- using OpenFeatureSDK . Extension ;
3
2
4
3
namespace OpenFeatureSDK . Model
5
4
{
@@ -23,7 +22,16 @@ public class FlagEvaluationDetails<T>
23
22
/// <summary>
24
23
/// Error that occurred during evaluation
25
24
/// </summary>
26
- public string ErrorType { get ; }
25
+ public ErrorType ErrorType { get ; }
26
+
27
+ /// <summary>
28
+ /// Message containing additional details about an error.
29
+ /// <para>
30
+ /// Will be <see langword="null" /> if there is no error or if the provider didn't provide any additional error
31
+ /// details.
32
+ /// </para>
33
+ /// </summary>
34
+ public string ErrorMessage { get ; }
27
35
28
36
/// <summary>
29
37
/// Describes the reason for the outcome of the evaluation process
@@ -45,30 +53,16 @@ public class FlagEvaluationDetails<T>
45
53
/// <param name="errorType">Error</param>
46
54
/// <param name="reason">Reason</param>
47
55
/// <param name="variant">Variant</param>
48
- public FlagEvaluationDetails ( string flagKey , T value , ErrorType errorType , string reason , string variant )
49
- {
50
- this . Value = value ;
51
- this . FlagKey = flagKey ;
52
- this . ErrorType = errorType . GetDescription ( ) ;
53
- this . Reason = reason ;
54
- this . Variant = variant ;
55
- }
56
-
57
- /// <summary>
58
- /// Initializes a new instance of the <see cref="FlagEvaluationDetails{T}"/> class.
59
- /// </summary>
60
- /// <param name="flagKey">Feature flag key</param>
61
- /// <param name="value">Evaluated value</param>
62
- /// <param name="errorType">Error</param>
63
- /// <param name="reason">Reason</param>
64
- /// <param name="variant">Variant</param>
65
- public FlagEvaluationDetails ( string flagKey , T value , string errorType , string reason , string variant )
56
+ /// <param name="errorMessage">Error message</param>
57
+ public FlagEvaluationDetails ( string flagKey , T value , ErrorType errorType , string reason , string variant ,
58
+ string errorMessage = null )
66
59
{
67
60
this . Value = value ;
68
61
this . FlagKey = flagKey ;
69
62
this . ErrorType = errorType ;
70
63
this . Reason = reason ;
71
64
this . Variant = variant ;
65
+ this . ErrorMessage = errorMessage ;
72
66
}
73
67
}
74
68
}
0 commit comments