@@ -56,12 +56,11 @@ protected FiberResult() { }
5656 /// <param name="length">Fibers length value for located areas (in pixels) (required).</param>
5757 /// <param name="area">Fibers value for areas (in pixels) (required).</param>
5858 /// <param name="colorValues">Fibers color value (required).</param>
59- /// <param name="errorCode">errorCode.</param>
6059 /// <param name="type">type (required) (default to AuthenticityResultType.UV_FIBERS).</param>
6160 /// <param name="elementResult">elementResult.</param>
6261 /// <param name="elementDiagnose">elementDiagnose.</param>
6362 /// <param name="percentValue">percentValue.</param>
64- public FiberResult ( int rectCount = default ( int ) , int expectedCount = default ( int ) , Light ? lightValue = default ( Light ? ) , int lightDisp = default ( int ) , List < RectangleCoordinates > rectArray = default ( List < RectangleCoordinates > ) , List < int > width = default ( List < int > ) , List < int > length = default ( List < int > ) , List < int > area = default ( List < int > ) , List < int > colorValues = default ( List < int > ) , int errorCode = default ( int ) , AuthenticityResultType type = AuthenticityResultType . UV_FIBERS , CheckResult ? elementResult = default ( CheckResult ? ) , CheckDiagnose ? elementDiagnose = default ( CheckDiagnose ? ) , int percentValue = default ( int ) ) : base ( type , elementResult , elementDiagnose , percentValue )
63+ public FiberResult ( int rectCount = default ( int ) , int expectedCount = default ( int ) , Light ? lightValue = default ( Light ? ) , int lightDisp = default ( int ) , List < RectangleCoordinates > rectArray = default ( List < RectangleCoordinates > ) , List < int > width = default ( List < int > ) , List < int > length = default ( List < int > ) , List < int > area = default ( List < int > ) , List < int > colorValues = default ( List < int > ) , AuthenticityResultType type = AuthenticityResultType . UV_FIBERS , CheckResult ? elementResult = default ( CheckResult ? ) , CheckDiagnose ? elementDiagnose = default ( CheckDiagnose ? ) , int percentValue = default ( int ) ) : base ( type , elementResult , elementDiagnose , percentValue )
6564 {
6665 this . RectCount = rectCount ;
6766 this . ExpectedCount = expectedCount ;
@@ -97,7 +96,6 @@ protected FiberResult() { }
9796 this . ColorValues = colorValues ;
9897 this . LightValue = lightValue ;
9998 this . LightDisp = lightDisp ;
100- this . ErrorCode = errorCode ;
10199 }
102100
103101 /// <summary>
@@ -159,12 +157,6 @@ protected FiberResult() { }
159157 [ DataMember ( Name = "ColorValues" , IsRequired = true , EmitDefaultValue = true ) ]
160158 public List < int > ColorValues { get ; set ; }
161159
162- /// <summary>
163- /// Gets or Sets ErrorCode
164- /// </summary>
165- [ DataMember ( Name = "ErrorCode" , EmitDefaultValue = false ) ]
166- public int ? ErrorCode { get ; set ; }
167-
168160 /// <summary>
169161 /// Returns the string presentation of the object
170162 /// </summary>
@@ -183,7 +175,6 @@ public override string ToString()
183175 sb . Append ( " Length: " ) . Append ( Length ) . Append ( "\n " ) ;
184176 sb . Append ( " Area: " ) . Append ( Area ) . Append ( "\n " ) ;
185177 sb . Append ( " ColorValues: " ) . Append ( ColorValues ) . Append ( "\n " ) ;
186- sb . Append ( " ErrorCode: " ) . Append ( ErrorCode ) . Append ( "\n " ) ;
187178 sb . Append ( "}\n " ) ;
188179 return sb . ToString ( ) ;
189180 }
0 commit comments