Imported Upstream version 6.0.0.271

Former-commit-id: 2fde65daab17ed3bb08a7be86fb05423d63b0290
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-05-29 08:54:19 +00:00
parent 8f11a00d09
commit 2ba231cd0c
155 changed files with 1067 additions and 794 deletions

View File

@ -30,78 +30,35 @@
namespace System.Reflection.Emit
{
public abstract class PropertyBuilder : PropertyInfo
public sealed partial class PropertyBuilder : System.Reflection.PropertyInfo
{
public override PropertyAttributes Attributes {
get {
throw new PlatformNotSupportedException ();
}
}
public override bool CanRead {
get {
throw new PlatformNotSupportedException ();
}
}
public override bool CanWrite {
get {
throw new PlatformNotSupportedException ();
}
}
public override Type DeclaringType {
get {
throw new PlatformNotSupportedException ();
}
}
public override string Name {
get {
throw new PlatformNotSupportedException ();
}
}
public override Type PropertyType {
get {
throw new PlatformNotSupportedException ();
}
}
public void AddOtherMethod (MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException ();
}
public void SetConstant (object defaultValue)
{
throw new PlatformNotSupportedException ();
}
public void SetCustomAttribute (CustomAttributeBuilder customBuilder)
{
throw new PlatformNotSupportedException ();
}
public void SetCustomAttribute (ConstructorInfo con, byte[] binaryAttribute)
{
throw new PlatformNotSupportedException ();
}
public void SetGetMethod (MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException ();
}
public void SetSetMethod (MethodBuilder mdBuilder)
{
throw new PlatformNotSupportedException ();
}
public override ParameterInfo[] GetIndexParameters ()
{
throw new PlatformNotSupportedException ();
}
internal PropertyBuilder() { throw new PlatformNotSupportedException (); }
public override System.Reflection.PropertyAttributes Attributes { get { throw new PlatformNotSupportedException (); } }
public override bool CanRead { get { throw new PlatformNotSupportedException (); } }
public override bool CanWrite { get { throw new PlatformNotSupportedException (); } }
public override System.Type DeclaringType { get { throw new PlatformNotSupportedException (); } }
public override System.Reflection.Module Module { get { throw new PlatformNotSupportedException (); } }
public override string Name { get { throw new PlatformNotSupportedException (); } }
public System.Reflection.Emit.PropertyToken PropertyToken { get { throw new PlatformNotSupportedException (); } }
public override System.Type PropertyType { get { throw new PlatformNotSupportedException (); } }
public override System.Type ReflectedType { get { throw new PlatformNotSupportedException (); } }
public void AddOtherMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { throw new PlatformNotSupportedException (); }
public override System.Reflection.MethodInfo[] GetAccessors(bool nonPublic) { throw new PlatformNotSupportedException (); }
public override object[] GetCustomAttributes(bool inherit) { throw new PlatformNotSupportedException (); }
public override object[] GetCustomAttributes(System.Type attributeType, bool inherit) { throw new PlatformNotSupportedException (); }
public override System.Reflection.MethodInfo GetGetMethod(bool nonPublic) { throw new PlatformNotSupportedException (); }
public override System.Reflection.ParameterInfo[] GetIndexParameters() { throw new PlatformNotSupportedException (); }
public override System.Reflection.MethodInfo GetSetMethod(bool nonPublic) { throw new PlatformNotSupportedException (); }
public override object GetValue(object obj, object[] index) { throw new PlatformNotSupportedException (); }
public override object GetValue(object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture) { throw new PlatformNotSupportedException (); }
public override bool IsDefined(System.Type attributeType, bool inherit) { throw new PlatformNotSupportedException (); }
public void SetConstant(object defaultValue) { throw new PlatformNotSupportedException (); }
public void SetCustomAttribute(System.Reflection.ConstructorInfo con, byte[] binaryAttribute) { throw new PlatformNotSupportedException (); }
public void SetCustomAttribute(System.Reflection.Emit.CustomAttributeBuilder customBuilder) { throw new PlatformNotSupportedException (); }
public void SetGetMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { throw new PlatformNotSupportedException (); }
public void SetSetMethod(System.Reflection.Emit.MethodBuilder mdBuilder) { throw new PlatformNotSupportedException (); }
public override void SetValue(object obj, object value, object[] index) { throw new PlatformNotSupportedException (); }
public override void SetValue(object obj, object value, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object[] index, System.Globalization.CultureInfo culture) { throw new PlatformNotSupportedException (); }
}
}