You've already forked linux-packaging-mono
Imported Upstream version 5.20.0.180
Former-commit-id: ff953ca879339fe1e1211f7220f563e1342e66cb
This commit is contained in:
parent
0e2d47d1c8
commit
0510252385
@ -35,113 +35,8 @@ using System.Runtime.InteropServices;
|
||||
|
||||
namespace System.Reflection {
|
||||
|
||||
[ComVisible (true)]
|
||||
[ComDefaultInterfaceAttribute (typeof (_FieldInfo))]
|
||||
[Serializable]
|
||||
[ClassInterface(ClassInterfaceType.None)]
|
||||
#if MOBILE
|
||||
public abstract class FieldInfo : MemberInfo {
|
||||
#else
|
||||
public abstract class FieldInfo : MemberInfo, _FieldInfo {
|
||||
#endif
|
||||
public abstract FieldAttributes Attributes {get;}
|
||||
public abstract RuntimeFieldHandle FieldHandle {get;}
|
||||
|
||||
protected FieldInfo () {}
|
||||
|
||||
public abstract Type FieldType { get; }
|
||||
|
||||
public abstract object GetValue(object obj);
|
||||
|
||||
public override MemberTypes MemberType {
|
||||
get { return MemberTypes.Field;}
|
||||
}
|
||||
|
||||
public bool IsLiteral
|
||||
{
|
||||
get {return (Attributes & FieldAttributes.Literal) != 0;}
|
||||
}
|
||||
|
||||
public bool IsStatic
|
||||
{
|
||||
get {return (Attributes & FieldAttributes.Static) != 0;}
|
||||
}
|
||||
|
||||
public bool IsInitOnly
|
||||
{
|
||||
get {return (Attributes & FieldAttributes.InitOnly) != 0;}
|
||||
}
|
||||
public Boolean IsPublic
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Public;
|
||||
}
|
||||
}
|
||||
public Boolean IsPrivate
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Private;
|
||||
}
|
||||
}
|
||||
public Boolean IsFamily
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Family;
|
||||
}
|
||||
}
|
||||
public Boolean IsAssembly
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.Assembly;
|
||||
}
|
||||
}
|
||||
public Boolean IsFamilyAndAssembly
|
||||
{
|
||||
get {
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.FamANDAssem;
|
||||
}
|
||||
}
|
||||
public Boolean IsFamilyOrAssembly
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.FieldAccessMask) == FieldAttributes.FamORAssem;
|
||||
}
|
||||
}
|
||||
public Boolean IsPinvokeImpl
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.PinvokeImpl) == FieldAttributes.PinvokeImpl;
|
||||
}
|
||||
}
|
||||
public Boolean IsSpecialName
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.SpecialName) == FieldAttributes.SpecialName;
|
||||
}
|
||||
}
|
||||
public Boolean IsNotSerialized
|
||||
{
|
||||
get
|
||||
{
|
||||
return (Attributes & FieldAttributes.NotSerialized) == FieldAttributes.NotSerialized;
|
||||
}
|
||||
}
|
||||
|
||||
public abstract void SetValue (object obj, object value, BindingFlags invokeAttr, Binder binder, CultureInfo culture);
|
||||
|
||||
[DebuggerHidden]
|
||||
[DebuggerStepThrough]
|
||||
public void SetValue (object obj, object value)
|
||||
{
|
||||
SetValue (obj, value, 0, null, null);
|
||||
}
|
||||
partial class FieldInfo : MemberInfo {
|
||||
|
||||
[MethodImplAttribute(MethodImplOptions.InternalCall)]
|
||||
private static extern FieldInfo internal_from_handle_type (IntPtr field_handle, IntPtr type_handle);
|
||||
@ -164,33 +59,11 @@ namespace System.Reflection {
|
||||
return fi;
|
||||
}
|
||||
|
||||
//
|
||||
// Note: making this abstract imposes an implementation requirement
|
||||
// on any class that derives from it. However, since it's also
|
||||
// internal, that means only classes inside corlib can derive
|
||||
// from FieldInfo. See
|
||||
//
|
||||
// errors/cs0534-4.cs errors/CS0534-4-lib.cs
|
||||
//
|
||||
// class/Microsoft.JScript/Microsoft.JScript/JSFieldInfo.cs
|
||||
//
|
||||
internal virtual int GetFieldOffset ()
|
||||
{
|
||||
throw new SystemException ("This method should not be called");
|
||||
}
|
||||
|
||||
[CLSCompliant(false)]
|
||||
public virtual object GetValueDirect (TypedReference obj)
|
||||
{
|
||||
throw new NotSupportedException(Environment.GetResourceString("NotSupported_AbstractNonCLS"));
|
||||
}
|
||||
|
||||
[CLSCompliant(false)]
|
||||
public virtual void SetValueDirect (TypedReference obj, object value)
|
||||
{
|
||||
throw new NotSupportedException(Environment.GetResourceString("NotSupported_AbstractNonCLS"));
|
||||
}
|
||||
|
||||
[MethodImplAttribute(MethodImplOptions.InternalCall)]
|
||||
private extern MarshalAsAttribute get_marshal_info ();
|
||||
|
||||
@ -263,101 +136,5 @@ namespace System.Reflection {
|
||||
return attrsData;
|
||||
}
|
||||
|
||||
[MethodImplAttribute (MethodImplOptions.InternalCall)]
|
||||
extern Type[] GetTypeModifiers (bool optional);
|
||||
|
||||
public virtual Type[] GetOptionalCustomModifiers () {
|
||||
Type[] types = GetTypeModifiers (true);
|
||||
if (types == null)
|
||||
return Type.EmptyTypes;
|
||||
return types;
|
||||
}
|
||||
|
||||
public virtual Type[] GetRequiredCustomModifiers () {
|
||||
Type[] types = GetTypeModifiers (false);
|
||||
if (types == null)
|
||||
return Type.EmptyTypes;
|
||||
return types;
|
||||
}
|
||||
|
||||
public virtual object GetRawConstantValue ()
|
||||
{
|
||||
throw new NotSupportedException ("This non-CLS method is not implemented.");
|
||||
}
|
||||
|
||||
|
||||
public override bool Equals (object obj)
|
||||
{
|
||||
return obj == (object) this;
|
||||
}
|
||||
|
||||
public override int GetHashCode ()
|
||||
{
|
||||
return base.GetHashCode ();
|
||||
}
|
||||
|
||||
public static bool operator == (FieldInfo left, FieldInfo right)
|
||||
{
|
||||
if ((object)left == (object)right)
|
||||
return true;
|
||||
if ((object)left == null ^ (object)right == null)
|
||||
return false;
|
||||
return left.Equals (right);
|
||||
}
|
||||
|
||||
public static bool operator != (FieldInfo left, FieldInfo right)
|
||||
{
|
||||
if ((object)left == (object)right)
|
||||
return false;
|
||||
if ((object)left == null ^ (object)right == null)
|
||||
return true;
|
||||
return !left.Equals (right);
|
||||
}
|
||||
|
||||
public virtual bool IsSecurityCritical {
|
||||
get {
|
||||
throw new NotSupportedException ();
|
||||
}
|
||||
}
|
||||
|
||||
public virtual bool IsSecuritySafeCritical {
|
||||
get {
|
||||
throw new NotSupportedException ();
|
||||
}
|
||||
}
|
||||
|
||||
public virtual bool IsSecurityTransparent {
|
||||
get {
|
||||
throw new NotSupportedException ();
|
||||
}
|
||||
}
|
||||
|
||||
#if !MOBILE
|
||||
void _FieldInfo.GetIDsOfNames ([In] ref Guid riid, IntPtr rgszNames, uint cNames, uint lcid, IntPtr rgDispId)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
Type _FieldInfo.GetType ()
|
||||
{
|
||||
// Required or object::GetType becomes virtual final
|
||||
return base.GetType ();
|
||||
}
|
||||
|
||||
void _FieldInfo.GetTypeInfo (uint iTInfo, uint lcid, IntPtr ppTInfo)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
void _FieldInfo.GetTypeInfoCount (out uint pcTInfo)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
void _FieldInfo.Invoke (uint dispIdMember, [In] ref Guid riid, uint lcid, short wFlags, IntPtr pDispParams, IntPtr pVarResult, IntPtr pExcepInfo, IntPtr puArgErr)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user