PERWAPI.EHClause.EHClause C# (CSharp) Method

EHClause() private method

private EHClause ( EHClauseType cType, uint tOff, uint tLen, uint hOff, uint hLen ) : System
cType EHClauseType
tOff uint
tLen uint
hOff uint
hLen uint
return System
        internal EHClause(EHClauseType cType, uint tOff, uint tLen, uint hOff, uint hLen)
        {
            clauseType = cType;
            tryOffset = tOff;
            tryLength = tLen;
            handlerOffset = hOff;
            handlerLength = hLen;
        }