System.Reflection.Emit.TypeBuilder.CustAttr.Bake C# (CSharp) Метод

Bake() публичный Метод

public Bake ( ModuleBuilder module, int token ) : void
module ModuleBuilder
token int
Результат void
            public void Bake(ModuleBuilder module, int token)
            {
                if (m_customBuilder == null)
                {
                    TypeBuilder.InternalCreateCustomAttribute(token, module.GetConstructorToken(m_con).Token,
                        m_binaryAttribute, module, false);
                }
                else
                {
                    m_customBuilder.CreateCustomAttribute(module, token);
                }
            }
        }
TypeBuilder.CustAttr