System.Reflection.Emit.ParameterBuilder.SetCustomAttribute C# (CSharp) Method

SetCustomAttribute() private method

private SetCustomAttribute ( System customBuilder ) : void
customBuilder System
return void
        public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { }
    }

Same methods

ParameterBuilder::SetCustomAttribute ( System con, byte binaryAttribute ) : void

Usage Example

Esempio n. 1
0
 public static void SetCustomAttributes(ParameterBuilder pb, IPersistentMap attributes)
 {
     for (ISeq s = RT.seq(attributes); s != null; s = s.next())
         pb.SetCustomAttribute(CreateCustomAttributeBuilder((IMapEntry)(s.first())));
 }
All Usage Examples Of System.Reflection.Emit.ParameterBuilder::SetCustomAttribute