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,87 +30,67 @@
namespace System.Reflection.Emit
{
public abstract class EnumBuilder : TypeInfo
public sealed partial class EnumBuilder : System.Reflection.TypeInfo
{
public FieldBuilder UnderlyingField {
get {
throw new PlatformNotSupportedException ();
}
}
public override Assembly Assembly {
get {
throw new PlatformNotSupportedException ();
}
}
public override string AssemblyQualifiedName {
get {
throw new PlatformNotSupportedException ();
}
}
public override Type BaseType {
get {
throw new PlatformNotSupportedException ();
}
}
public override string FullName {
get {
throw new PlatformNotSupportedException ();
}
}
public override Guid GUID {
get {
throw new PlatformNotSupportedException ();
}
}
public override Module Module {
get {
throw new PlatformNotSupportedException ();
}
}
public override string Name {
get {
throw new PlatformNotSupportedException ();
}
}
public override string Namespace {
get {
throw new PlatformNotSupportedException ();
}
}
public TypeInfo CreateTypeInfo ()
{
throw new PlatformNotSupportedException ();
}
public FieldBuilder DefineLiteral (string literalName, object literalValue)
{
throw new PlatformNotSupportedException ();
}
public override System.Type GetElementType ()
{
throw new PlatformNotSupportedException ();
}
public void SetCustomAttribute (CustomAttributeBuilder customBuilder)
{
throw new PlatformNotSupportedException ();
}
public void SetCustomAttribute (ConstructorInfo con, byte[] binaryAttribute)
{
throw new PlatformNotSupportedException ();
}
internal EnumBuilder() { throw new PlatformNotSupportedException (); }
public override System.Reflection.Assembly Assembly { get { throw new PlatformNotSupportedException (); } }
public override string AssemblyQualifiedName { get { throw new PlatformNotSupportedException (); } }
public override System.Type BaseType { get { throw new PlatformNotSupportedException (); } }
public override System.Type DeclaringType { get { throw new PlatformNotSupportedException (); } }
public override string FullName { get { throw new PlatformNotSupportedException (); } }
public override System.Guid GUID { get { throw new PlatformNotSupportedException (); } }
public override bool IsConstructedGenericType { get { throw new PlatformNotSupportedException (); } }
public override bool IsTypeDefinition { get { throw new PlatformNotSupportedException (); } }
public override System.Reflection.Module Module { get { throw new PlatformNotSupportedException (); } }
public override string Name { get { throw new PlatformNotSupportedException (); } }
public override string Namespace { get { throw new PlatformNotSupportedException (); } }
public override System.Type ReflectedType { get { throw new PlatformNotSupportedException (); } }
public override System.RuntimeTypeHandle TypeHandle { get { throw new PlatformNotSupportedException (); } }
public System.Reflection.Emit.TypeToken TypeToken { get { throw new PlatformNotSupportedException (); } }
public System.Reflection.Emit.FieldBuilder UnderlyingField { get { throw new PlatformNotSupportedException (); } }
public override System.Type UnderlyingSystemType { get { throw new PlatformNotSupportedException (); } }
public System.Type CreateType() { throw new PlatformNotSupportedException (); }
public System.Reflection.TypeInfo CreateTypeInfo() { throw new PlatformNotSupportedException (); }
public System.Reflection.Emit.FieldBuilder DefineLiteral(string literalName, object literalValue) { throw new PlatformNotSupportedException (); }
protected override System.Reflection.TypeAttributes GetAttributeFlagsImpl() { throw new PlatformNotSupportedException (); }
protected override System.Reflection.ConstructorInfo GetConstructorImpl(System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw new PlatformNotSupportedException (); }
public override System.Reflection.ConstructorInfo[] GetConstructors(System.Reflection.BindingFlags bindingAttr) { 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.Type GetElementType() { throw new PlatformNotSupportedException (); }
public override System.Type GetEnumUnderlyingType() { throw new PlatformNotSupportedException (); }
public override System.Reflection.EventInfo GetEvent(string name, System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Reflection.EventInfo[] GetEvents() { throw new PlatformNotSupportedException (); }
public override System.Reflection.EventInfo[] GetEvents(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Reflection.FieldInfo[] GetFields(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Type GetInterface(string name, bool ignoreCase) { throw new PlatformNotSupportedException (); }
public override System.Reflection.InterfaceMapping GetInterfaceMap(System.Type interfaceType) { throw new PlatformNotSupportedException (); }
public override System.Type[] GetInterfaces() { throw new PlatformNotSupportedException (); }
public override System.Reflection.MemberInfo[] GetMember(string name, System.Reflection.MemberTypes type, System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Reflection.MemberInfo[] GetMembers(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
protected override System.Reflection.MethodInfo GetMethodImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Reflection.CallingConventions callConvention, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw new PlatformNotSupportedException (); }
public override System.Reflection.MethodInfo[] GetMethods(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Type GetNestedType(string name, System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Type[] GetNestedTypes(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
public override System.Reflection.PropertyInfo[] GetProperties(System.Reflection.BindingFlags bindingAttr) { throw new PlatformNotSupportedException (); }
protected override System.Reflection.PropertyInfo GetPropertyImpl(string name, System.Reflection.BindingFlags bindingAttr, System.Reflection.Binder binder, System.Type returnType, System.Type[] types, System.Reflection.ParameterModifier[] modifiers) { throw new PlatformNotSupportedException (); }
protected override bool HasElementTypeImpl() { throw new PlatformNotSupportedException (); }
public override object InvokeMember(string name, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, object target, object[] args, System.Reflection.ParameterModifier[] modifiers, System.Globalization.CultureInfo culture, string[] namedParameters) { throw new PlatformNotSupportedException (); }
protected override bool IsArrayImpl() { throw new PlatformNotSupportedException (); }
public override bool IsAssignableFrom (System.Reflection.TypeInfo typeInfo) { throw new PlatformNotSupportedException (); }
protected override bool IsByRefImpl() { throw new PlatformNotSupportedException (); }
protected override bool IsCOMObjectImpl() { throw new PlatformNotSupportedException (); }
public override bool IsDefined(System.Type attributeType, bool inherit) { throw new PlatformNotSupportedException (); }
protected override bool IsPointerImpl() { throw new PlatformNotSupportedException (); }
protected override bool IsPrimitiveImpl() { throw new PlatformNotSupportedException (); }
protected override bool IsValueTypeImpl() { throw new PlatformNotSupportedException (); }
public override System.Type MakeArrayType() { throw new PlatformNotSupportedException (); }
public override System.Type MakeArrayType(int rank) { throw new PlatformNotSupportedException (); }
public override System.Type MakeByRefType() { throw new PlatformNotSupportedException (); }
public override System.Type MakePointerType() { 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 (); }
}
}