Example #1
0
 public T UnsafeAsyncDelegate <T>(string content, params NamespaceConverter[] usings) where T : Delegate
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <T> .UnsafeAsyncDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, _usings.ToArray()));
 }
Example #2
0
 public Action <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> UnsafeAsyncAction <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12>(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Action <T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12> > .UnsafeAsyncDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, _usings.ToArray()));
 }
Example #3
0
 public Action <T1, T2, T3> UnsafeAsyncAction <T1, T2, T3>(string content, params NamespaceConverter[] usings)
 {
     return(content == default ? null : DelegateOperator <Action <T1, T2, T3> > .UnsafeAsyncDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _oopAction, usings.ToArray()));
 }
Example #4
0
 public Func <T1, T2, T3, T4, T5> UnsafeAsyncFunc <T1, T2, T3, T4, T5>(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Func <T1, T2, T3, T4, T5> > .UnsafeAsyncDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _methodAction, _usings.ToArray()));
 }
Example #5
0
 public Action UnsafeAsyncAction(string content, params NamespaceConverter[] usings)
 {
     Using(usings);
     return(content == default ? null : DelegateOperator <Action> .UnsafeAsyncDelegate(content, AssemblyBuilder.Compiler.Domain, OptionAction, _usings.ToArray()));
 }