_ParseAttributeUsageAttribute() private method

private _ParseAttributeUsageAttribute ( IntPtr pCa, int cCa, int &targets, bool &inherited, bool &allowMultiple ) : void
pCa System.IntPtr
cCa int
targets int
inherited bool
allowMultiple bool
return void
        private static void ParseAttributeUsageAttribute(ConstArray ca, out AttributeTargets targets, out bool inherited, out bool allowMultiple)
        {
            int num;

            CustomAttribute._ParseAttributeUsageAttribute(ca.Signature, ca.Length, out num, out inherited, out allowMultiple);
            targets = (AttributeTargets)num;
        }