| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- //
- // System.Reflection.Emit/SignatureHelper.cs
- //
- // Author:
- // Paolo Molaro ([email protected])
- //
- // (C) 2001 Ximian, Inc. http://www.ximian.com
- //
- using System;
- using System.Reflection;
- using System.Reflection.Emit;
- using System.Globalization;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- namespace System.Reflection.Emit {
- [Serializable]
- public sealed class SignatureHelper {
- internal enum SignatureHelperType {
- HELPER_FIELD,
- HELPER_LOCAL,
- HELPER_METHOD,
- HELPER_PROPERTY
- }
- private ModuleBuilder module;
- private Type[] arguments;
- private SignatureHelperType type;
- internal SignatureHelper (ModuleBuilder module, SignatureHelperType type)
- {
- this.type = type;
- this.module = module;
- }
- public static SignatureHelper GetFieldSigHelper (Module mod)
- {
- if (!(mod is ModuleBuilder))
- throw new NotImplementedException ();
- return new SignatureHelper ((ModuleBuilder) mod, SignatureHelperType.HELPER_FIELD);
- }
- public static SignatureHelper GetLocalVarSigHelper (Module mod)
- {
- if (!(mod is ModuleBuilder))
- throw new NotImplementedException ();
- return new SignatureHelper ((ModuleBuilder) mod, SignatureHelperType.HELPER_LOCAL);
- }
- [MonoTODO]
- public static SignatureHelper GetMethodSigHelper( Module mod, CallingConventions callingConvention, Type returnType)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static SignatureHelper GetMethodSigHelper( Module mod, Type returnType, Type[] parameterTypes)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public static SignatureHelper GetPropertySigHelper( Module mod, Type returnType, Type[] parameterTypes)
- {
- throw new NotImplementedException ();
- }
- public void AddArgument (Type clsArgument)
- {
- if (arguments != null) {
- Type[] new_a = new Type [arguments.Length + 1];
- System.Array.Copy (arguments, new_a, arguments.Length);
- new_a [arguments.Length] = clsArgument;
- arguments = new_a;
- } else {
- arguments = new Type [1];
- arguments [0] = clsArgument;
- }
- }
- [MonoTODO]
- public void AddSentinel ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool Equals (object obj)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int GetHashCode ()
- {
- throw new NotImplementedException ();
- }
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern byte[] get_signature_local ();
- [MethodImplAttribute(MethodImplOptions.InternalCall)]
- internal extern byte[] get_signature_field ();
- public byte[] GetSignature ()
- {
- switch (type) {
- case SignatureHelperType.HELPER_LOCAL:
- return get_signature_local ();
- case SignatureHelperType.HELPER_FIELD:
- return get_signature_field ();
- default:
- throw new NotImplementedException ();
- }
- }
- public override string ToString() {
- return "SignatureHelper";
- }
- }
- }
|