ProxyBaseClasses (#27)
This commit is contained in:
+38
@@ -0,0 +1,38 @@
|
||||
//----------------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#nullable enable
|
||||
using System;
|
||||
using AutoMapper;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public class HumanProxy : IHuman
|
||||
{
|
||||
public ProxyInterfaceSourceGeneratorTests.Source.Human _Instance { get; }
|
||||
|
||||
public bool IsAlive { get => _Instance.IsAlive; set => _Instance.IsAlive = value; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public HumanProxy(ProxyInterfaceSourceGeneratorTests.Source.Human instance)
|
||||
{
|
||||
_Instance = instance;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
#nullable disable
|
||||
+26
@@ -0,0 +1,26 @@
|
||||
//----------------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#nullable enable
|
||||
using System;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public partial interface IHuman
|
||||
{
|
||||
bool IsAlive { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
#nullable disable
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
#nullable enable
|
||||
using System;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.DTO
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public partial interface IPerson
|
||||
{
|
||||
+56
@@ -0,0 +1,56 @@
|
||||
//----------------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#nullable enable
|
||||
using System;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public partial interface IPersonExtends
|
||||
{
|
||||
string Name { get; set; }
|
||||
|
||||
string? StringNullable { get; set; }
|
||||
|
||||
long? NullableLong { get; }
|
||||
|
||||
object @object { get; set; }
|
||||
|
||||
bool IsAlive { get; set; }
|
||||
|
||||
bool X { get; set; }
|
||||
|
||||
|
||||
|
||||
void Void();
|
||||
|
||||
string HelloWorld(string name);
|
||||
|
||||
void WithParams(params string[] values);
|
||||
|
||||
string Add(string s, string @string);
|
||||
|
||||
int DefaultValue(int x = 100);
|
||||
|
||||
void In_Out_Ref1(in int a, out int b, ref int c);
|
||||
|
||||
bool Generic2<T1, T2>(int x, T1 t1, T2 t2) where T1 : struct where T2 : class, new();
|
||||
|
||||
System.Threading.Tasks.Task Method1Async();
|
||||
|
||||
System.Threading.Tasks.Task<int> Method2Async();
|
||||
|
||||
System.Threading.Tasks.Task<string?> Method3Async();
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
#nullable disable
|
||||
+117
@@ -0,0 +1,117 @@
|
||||
//----------------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by https://github.com/StefH/ProxyInterfaceSourceGenerator.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//----------------------------------------------------------------------------------------
|
||||
|
||||
#nullable enable
|
||||
using System;
|
||||
using AutoMapper;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public class PersonExtendsProxy : IPersonExtends
|
||||
{
|
||||
public ProxyInterfaceSourceGeneratorTests.Source.PersonExtends _Instance { get; }
|
||||
|
||||
public string Name { get => _Instance.Name; set => _Instance.Name = value; }
|
||||
|
||||
public string? StringNullable { get => _Instance.StringNullable; set => _Instance.StringNullable = value; }
|
||||
|
||||
public long? NullableLong { get => _Instance.NullableLong; }
|
||||
|
||||
public object @object { get => _Instance.@object; set => _Instance.@object = value; }
|
||||
|
||||
public bool IsAlive { get => _Instance.IsAlive; set => _Instance.IsAlive = value; }
|
||||
|
||||
public bool X { get => _Instance.X; set => _Instance.X = value; }
|
||||
|
||||
|
||||
|
||||
public void Void()
|
||||
{
|
||||
_Instance.Void();
|
||||
}
|
||||
|
||||
public string HelloWorld(string name)
|
||||
{
|
||||
string name_ = name;
|
||||
var result_58477331 = _Instance.HelloWorld(name_);
|
||||
return result_58477331;
|
||||
}
|
||||
|
||||
public void WithParams(params string[] values)
|
||||
{
|
||||
string[] values_ = values;
|
||||
_Instance.WithParams(values_);
|
||||
}
|
||||
|
||||
public string Add(string s, string @string)
|
||||
{
|
||||
string s_ = s;
|
||||
string @string_ = @string;
|
||||
var result_58477331 = _Instance.Add(s_, @string_);
|
||||
return result_58477331;
|
||||
}
|
||||
|
||||
public int DefaultValue(int x = 100)
|
||||
{
|
||||
int x_ = x;
|
||||
var result_42930144 = _Instance.DefaultValue(x_);
|
||||
return result_42930144;
|
||||
}
|
||||
|
||||
public void In_Out_Ref1(in int a, out int b, ref int c)
|
||||
{
|
||||
int a_ = a;
|
||||
int b_;
|
||||
int c_ = c;
|
||||
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
|
||||
b = b_;
|
||||
}
|
||||
|
||||
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2) where T1 : struct where T2 : class, new()
|
||||
{
|
||||
int x_ = x;
|
||||
T1 t1_ = t1;
|
||||
T2 t2_ = t2;
|
||||
var result_38995950 = _Instance.Generic2<T1, T2>(x_, t1_, t2_);
|
||||
return result_38995950;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task Method1Async()
|
||||
{
|
||||
var result_51708797 = _Instance.Method1Async();
|
||||
return result_51708797;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<int> Method2Async()
|
||||
{
|
||||
var result_1620952573 = _Instance.Method2Async();
|
||||
return result_1620952573;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string?> Method3Async()
|
||||
{
|
||||
var result_1636499760 = _Instance.Method3Async();
|
||||
return result_1636499760;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public PersonExtendsProxy(ProxyInterfaceSourceGeneratorTests.Source.PersonExtends instance)
|
||||
{
|
||||
_Instance = instance;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
#nullable disable
|
||||
+32
-32
@@ -11,11 +11,11 @@
|
||||
using System;
|
||||
using AutoMapper;
|
||||
|
||||
namespace ProxyInterfaceSourceGeneratorTests.DTO
|
||||
namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
{
|
||||
public class PersonProxy : IPerson
|
||||
{
|
||||
public ProxyInterfaceSourceGeneratorTests.DTO.Person _Instance { get; }
|
||||
public ProxyInterfaceSourceGeneratorTests.Source.Person _Instance { get; }
|
||||
|
||||
public string Name { get => _Instance.Name; set => _Instance.Name = value; }
|
||||
|
||||
@@ -29,78 +29,78 @@ namespace ProxyInterfaceSourceGeneratorTests.DTO
|
||||
|
||||
public void Void()
|
||||
{
|
||||
_Instance.Void();
|
||||
_Instance.Void();
|
||||
}
|
||||
|
||||
public string HelloWorld(string name)
|
||||
{
|
||||
string name_ = name;
|
||||
var result_15289640 = _Instance.HelloWorld(name_);
|
||||
return result_15289640;
|
||||
string name_ = name;
|
||||
var result_56365455 = _Instance.HelloWorld(name_);
|
||||
return result_56365455;
|
||||
}
|
||||
|
||||
public void WithParams(params string[] values)
|
||||
{
|
||||
string[] values_ = values;
|
||||
_Instance.WithParams(values_);
|
||||
string[] values_ = values;
|
||||
_Instance.WithParams(values_);
|
||||
}
|
||||
|
||||
public string Add(string s, string @string)
|
||||
{
|
||||
string s_ = s;
|
||||
string @string_ = @string;
|
||||
var result_15289640 = _Instance.Add(s_, @string_);
|
||||
return result_15289640;
|
||||
string s_ = s;
|
||||
string @string_ = @string;
|
||||
var result_56365455 = _Instance.Add(s_, @string_);
|
||||
return result_56365455;
|
||||
}
|
||||
|
||||
public int DefaultValue(int x = 100)
|
||||
{
|
||||
int x_ = x;
|
||||
var result_54302544 = _Instance.DefaultValue(x_);
|
||||
return result_54302544;
|
||||
int x_ = x;
|
||||
var result_39875940 = _Instance.DefaultValue(x_);
|
||||
return result_39875940;
|
||||
}
|
||||
|
||||
public void In_Out_Ref1(in int a, out int b, ref int c)
|
||||
{
|
||||
int a_ = a;
|
||||
int b_;
|
||||
int c_ = c;
|
||||
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
|
||||
b = b_;
|
||||
int a_ = a;
|
||||
int b_;
|
||||
int c_ = c;
|
||||
_Instance.In_Out_Ref1(in a_, out b_, ref c_);
|
||||
b = b_;
|
||||
}
|
||||
|
||||
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2) where T1 : struct where T2 : class, new()
|
||||
{
|
||||
int x_ = x;
|
||||
T1 t1_ = t1;
|
||||
T2 t2_ = t2;
|
||||
var result_40004473 = _Instance.Generic2<T1, T2>(x_, t1_, t2_);
|
||||
return result_40004473;
|
||||
int x_ = x;
|
||||
T1 t1_ = t1;
|
||||
T2 t2_ = t2;
|
||||
var result_41799290 = _Instance.Generic2<T1, T2>(x_, t1_, t2_);
|
||||
return result_41799290;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task Method1Async()
|
||||
{
|
||||
var result_50153955 = _Instance.Method1Async();
|
||||
return result_50153955;
|
||||
var result_32599313 = _Instance.Method1Async();
|
||||
return result_32599313;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<int> Method2Async()
|
||||
{
|
||||
var result_1151242754 = _Instance.Method2Async();
|
||||
return result_1151242754;
|
||||
var result_1620495907 = _Instance.Method2Async();
|
||||
return result_1620495907;
|
||||
}
|
||||
|
||||
public System.Threading.Tasks.Task<string?> Method3Async()
|
||||
{
|
||||
var result_1190255658 = _Instance.Method3Async();
|
||||
return result_1190255658;
|
||||
var result_1604006392 = _Instance.Method3Async();
|
||||
return result_1604006392;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public PersonProxy(ProxyInterfaceSourceGeneratorTests.DTO.Person instance)
|
||||
public PersonProxy(ProxyInterfaceSourceGeneratorTests.Source.Person instance)
|
||||
{
|
||||
_Instance = instance;
|
||||
|
||||
Reference in New Issue
Block a user