69 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //
 | |
| // Author:
 | |
| //   Jb Evain (jbevain@gmail.com)
 | |
| //
 | |
| // Copyright (c) 2008 - 2015 Jb Evain
 | |
| // Copyright (c) 2008 - 2011 Novell, Inc.
 | |
| //
 | |
| // Licensed under the MIT/X11 license.
 | |
| //
 | |
| 
 | |
| using System;
 | |
| 
 | |
| namespace MonoFN.Cecil {
 | |
| 
 | |
| 	public class FieldReference : MemberReference {
 | |
| 
 | |
| 		TypeReference field_type;
 | |
| 
 | |
| 		public TypeReference FieldType {
 | |
| 			get { return field_type; }
 | |
| 			set { field_type = value; }
 | |
| 		}
 | |
| 
 | |
| 		public override string FullName {
 | |
| 			get { return field_type.FullName + " " + MemberFullName (); }
 | |
| 		}
 | |
| 
 | |
| 		public override bool ContainsGenericParameter {
 | |
| 			get { return field_type.ContainsGenericParameter || base.ContainsGenericParameter; }
 | |
| 		}
 | |
| 
 | |
| 		internal FieldReference ()
 | |
| 		{
 | |
| 			this.token = new MetadataToken (TokenType.MemberRef);
 | |
| 		}
 | |
| 
 | |
| 		public FieldReference (string name, TypeReference fieldType)
 | |
| 			: base (name)
 | |
| 		{
 | |
| 			Mixin.CheckType (fieldType, Mixin.Argument.fieldType);
 | |
| 
 | |
| 			this.field_type = fieldType;
 | |
| 			this.token = new MetadataToken (TokenType.MemberRef);
 | |
| 		}
 | |
| 
 | |
| 		public FieldReference (string name, TypeReference fieldType, TypeReference declaringType)
 | |
| 			: this (name, fieldType)
 | |
| 		{
 | |
| 			Mixin.CheckType (declaringType, Mixin.Argument.declaringType);
 | |
| 
 | |
| 			this.DeclaringType = declaringType;
 | |
| 		}
 | |
| 
 | |
| 		protected override IMemberDefinition ResolveDefinition ()
 | |
| 		{
 | |
| 			return this.Resolve ();
 | |
| 		}
 | |
| 
 | |
| 		public new virtual FieldDefinition Resolve ()
 | |
| 		{
 | |
| 			var module = this.Module;
 | |
| 			if (module == null)
 | |
| 				throw new NotSupportedException ();
 | |
| 
 | |
| 			return module.Resolve (this);
 | |
| 		}
 | |
| 	}
 | |
| }
 |