System.Reflection.MdFieldInfo.MdFieldInfo C# (CSharp) Method

MdFieldInfo() private method

private MdFieldInfo ( int tkField, FieldAttributes fieldAttributes, RuntimeTypeHandle declaringTypeHandle, System.RuntimeType.RuntimeTypeCache reflectedTypeCache, BindingFlags bindingFlags ) : System
tkField int
fieldAttributes FieldAttributes
declaringTypeHandle System.RuntimeTypeHandle
reflectedTypeCache System.RuntimeType.RuntimeTypeCache
bindingFlags BindingFlags
return System
        internal MdFieldInfo(
        int tkField, FieldAttributes fieldAttributes, RuntimeTypeHandle declaringTypeHandle, RuntimeTypeCache reflectedTypeCache, BindingFlags bindingFlags)
            : base(reflectedTypeCache, declaringTypeHandle.GetRuntimeType(), bindingFlags)
        {
            m_tkField = tkField;
            m_name = null; 
            m_fieldAttributes = fieldAttributes;
        }
        #endregion