Skip to content

Commit bb47cde

Browse files
committed
Binary operation fix
1 parent 974fb85 commit bb47cde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NetAnalyzers/Core/Microsoft.NetCore.Analyzers/Usage/ProvideHttpClientHandlerMaxResponseHeaderLengthValueCorrectly.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private static bool IsValidPropertyAssignmentOperation(ISimpleAssignmentOperatio
9494
return false;
9595
}
9696

97-
return operation.Value is IFieldReferenceOperation or ILiteralOperation;
97+
return operation.Value is IFieldReferenceOperation or ILiteralOperation or IBinaryOperation;
9898
}
9999
}
100100
}

0 commit comments

Comments
 (0)