HResultHelperFacilityIdShift Field |
[This is preliminary documentation and is subject to change.]
The number of bits to shift an
HResult to the left to get the facility (= the assembly) id on the lowest bit.
Namespace:
NerdyDuck.CodedExceptions
Assembly:
NerdyDuck.CodedExceptions (in NerdyDuck.CodedExceptions.dll) Version: 2.0.0+2040dad
Syntaxpublic const int FacilityIdShift = 16
Public Const FacilityIdShift As Integer = 16
View SourceField Value
Type:
Int32
Remarks
Examplesint FacilityId = (ex.HResult & HResultHelper.FacilityIdMask) >> HResultHelper.FacilityIdShift;
See Also