This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proxy: Property get/set via CLR properties
- Loading branch information
Showing
7 changed files
with
339 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Reflection.Emit; | ||
|
||
static class ReflectionExtensions | ||
{ | ||
public static bool IsProperty(this MethodBase method) | ||
{ | ||
var properties = method.DeclaringType.GetProperties(); | ||
foreach (var prop in properties) | ||
{ | ||
if (method == prop.GetMethod) return true; | ||
if (method == prop.SetMethod) return true; | ||
} | ||
return false; | ||
} | ||
|
||
public static MethodBuilder DefineMethodOverride(this TypeBuilder typeB, MethodInfo declMethod) | ||
{ | ||
ParameterInfo[] parms = declMethod.GetParameters(); | ||
|
||
Type[] parmTypes = new Type[parms.Length]; | ||
for (int i = 0; i<parms.Length ; i++) | ||
parmTypes[i] = parms[i].ParameterType; | ||
|
||
MethodAttributes attrs = declMethod.Attributes ^ MethodAttributes.Abstract; | ||
attrs ^= MethodAttributes.NewSlot; | ||
attrs |= MethodAttributes.Final; | ||
MethodBuilder method_builder = typeB.DefineMethod(declMethod.Name, | ||
attrs, | ||
declMethod.ReturnType, | ||
parmTypes); | ||
|
||
for (int i = 0; i<parms.Length ; i++) | ||
method_builder.DefineParameter (i + 1, parms[i].Attributes, parms[i].Name); | ||
|
||
typeB.DefineMethodOverride(method_builder, declMethod); | ||
|
||
return method_builder; | ||
} | ||
} |
Oops, something went wrong.