Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/System.Private.CoreLib/src/System/Reflection/Emit/PropertyBuilder.cs')
-rw-r--r--src/System.Private.CoreLib/src/System/Reflection/Emit/PropertyBuilder.cs155
1 files changed, 155 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/src/System/Reflection/Emit/PropertyBuilder.cs b/src/System.Private.CoreLib/src/System/Reflection/Emit/PropertyBuilder.cs
new file mode 100644
index 000000000..226225268
--- /dev/null
+++ b/src/System.Private.CoreLib/src/System/Reflection/Emit/PropertyBuilder.cs
@@ -0,0 +1,155 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+namespace System.Reflection.Emit
+{
+ public sealed class PropertyBuilder : PropertyInfo
+ {
+ internal PropertyBuilder()
+ {
+ // Prevent generating a default constructor
+ }
+
+ public override PropertyAttributes Attributes
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override bool CanRead
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override bool CanWrite
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override Type DeclaringType
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override Module Module
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override string Name
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override Type PropertyType
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public override Type ReflectedType
+ {
+ get
+ {
+ return default;
+ }
+ }
+
+ public void AddOtherMethod(MethodBuilder mdBuilder)
+ {
+ }
+
+ public override MethodInfo[] GetAccessors(bool nonPublic)
+ {
+ return default;
+ }
+
+ public override object[] GetCustomAttributes(bool inherit)
+ {
+ return default;
+ }
+
+ public override object[] GetCustomAttributes(Type attributeType, bool inherit)
+ {
+ return default;
+ }
+
+ public override MethodInfo GetGetMethod(bool nonPublic)
+ {
+ return default;
+ }
+
+ public override ParameterInfo[] GetIndexParameters()
+ {
+ return default;
+ }
+
+ public override MethodInfo GetSetMethod(bool nonPublic)
+ {
+ return default;
+ }
+
+ public override object GetValue(object obj, object[] index)
+ {
+ return default;
+ }
+
+ public override object GetValue(object obj, BindingFlags invokeAttr, Binder binder, object[] index, Globalization.CultureInfo culture)
+ {
+ return default;
+ }
+
+ public override bool IsDefined(Type attributeType, bool inherit)
+ {
+ return default;
+ }
+
+ public void SetConstant(object defaultValue)
+ {
+ }
+
+ public void SetCustomAttribute(ConstructorInfo con, byte[] binaryAttribute)
+ {
+ }
+
+ public void SetCustomAttribute(CustomAttributeBuilder customBuilder)
+ {
+ }
+
+ public void SetGetMethod(MethodBuilder mdBuilder)
+ {
+ }
+
+ public void SetSetMethod(MethodBuilder mdBuilder)
+ {
+ }
+
+ public override void SetValue(object obj, object value, object[] index)
+ {
+ }
+
+ public override void SetValue(object obj, object value, BindingFlags invokeAttr, Binder binder, object[] index, Globalization.CultureInfo culture)
+ {
+ }
+ }
+}