93 references to ByDesign
System.Private.CoreLib (93)
src\libraries\System.Private.CoreLib\src\System\Reflection\Assembly.cs (33)
77
public virtual Type[] GetExportedTypes() { throw NotImplemented.
ByDesign
; }
79
public virtual Type[] GetForwardedTypes() { throw NotImplemented.
ByDesign
; }
85
public virtual string? CodeBase => throw NotImplemented.
ByDesign
;
86
public virtual MethodInfo? EntryPoint => throw NotImplemented.
ByDesign
;
87
public virtual string? FullName => throw NotImplemented.
ByDesign
;
88
public virtual string ImageRuntimeVersion => throw NotImplemented.
ByDesign
;
90
public virtual string Location => throw NotImplemented.
ByDesign
;
91
public virtual bool ReflectionOnly => throw NotImplemented.
ByDesign
;
94
public virtual ManifestResourceInfo? GetManifestResourceInfo(string resourceName) { throw NotImplemented.
ByDesign
; }
95
public virtual string[] GetManifestResourceNames() { throw NotImplemented.
ByDesign
; }
96
public virtual Stream? GetManifestResourceStream(string name) { throw NotImplemented.
ByDesign
; }
97
public virtual Stream? GetManifestResourceStream(Type type, string name) { throw NotImplemented.
ByDesign
; }
102
public virtual AssemblyName GetName(bool copiedName) { throw NotImplemented.
ByDesign
; }
109
public virtual Type? GetType(string name, bool throwOnError, bool ignoreCase) { throw NotImplemented.
ByDesign
; }
111
public virtual bool IsDefined(Type attributeType, bool inherit) { throw NotImplemented.
ByDesign
; }
114
public virtual IList<CustomAttributeData> GetCustomAttributesData() { throw NotImplemented.
ByDesign
; }
116
public virtual object[] GetCustomAttributes(bool inherit) { throw NotImplemented.
ByDesign
; }
117
public virtual object[] GetCustomAttributes(Type attributeType, bool inherit) { throw NotImplemented.
ByDesign
; }
139
public virtual event ModuleResolveEventHandler? ModuleResolve { add { throw NotImplemented.
ByDesign
; } remove { throw NotImplemented.
ByDesign
; } }
141
public virtual Module ManifestModule => throw NotImplemented.
ByDesign
;
142
public virtual Module? GetModule(string name) { throw NotImplemented.
ByDesign
; }
145
public virtual Module[] GetModules(bool getResourceModules) { throw NotImplemented.
ByDesign
; }
149
public virtual Module[] GetLoadedModules(bool getResourceModules) { throw NotImplemented.
ByDesign
; }
152
public virtual AssemblyName[] GetReferencedAssemblies() { throw NotImplemented.
ByDesign
; }
154
public virtual Assembly GetSatelliteAssembly(CultureInfo culture) { throw NotImplemented.
ByDesign
; }
155
public virtual Assembly GetSatelliteAssembly(CultureInfo culture, Version? version) { throw NotImplemented.
ByDesign
; }
158
public virtual FileStream? GetFile(string name) { throw NotImplemented.
ByDesign
; }
162
public virtual FileStream[] GetFiles(bool getResourceModules) { throw NotImplemented.
ByDesign
; }
166
public virtual void GetObjectData(SerializationInfo info, StreamingContext context) { throw NotImplemented.
ByDesign
; }
177
public virtual bool GlobalAssemblyCache => throw NotImplemented.
ByDesign
;
178
public virtual long HostContext => throw NotImplemented.
ByDesign
;
419
public virtual Module LoadModule(string moduleName, byte[]? rawModule, byte[]? rawSymbolStore) { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\EventInfo.cs (1)
19
public virtual MethodInfo[] GetOtherMethods(bool nonPublic) { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\FieldInfo.cs (2)
80
public virtual Type[] GetOptionalCustomModifiers() { throw NotImplemented.
ByDesign
; }
81
public virtual Type[] GetRequiredCustomModifiers() { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\MemberInfo.cs (3)
28
throw NotImplemented.
ByDesign
;
32
public virtual bool HasSameMetadataDefinitionAs(MemberInfo other) { throw NotImplemented.
ByDesign
; }
39
public virtual IList<CustomAttributeData> GetCustomAttributesData() { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodBase.cs (3)
61
public virtual bool IsSecurityCritical => throw NotImplemented.
ByDesign
;
62
public virtual bool IsSecuritySafeCritical => throw NotImplemented.
ByDesign
;
63
public virtual bool IsSecurityTransparent => throw NotImplemented.
ByDesign
;
src\libraries\System.Private.CoreLib\src\System\Reflection\MethodInfo.cs (2)
15
public virtual ParameterInfo ReturnParameter => throw NotImplemented.
ByDesign
;
16
public virtual Type ReturnType => throw NotImplemented.
ByDesign
;
src\libraries\System.Private.CoreLib\src\System\Reflection\Module.cs (26)
16
public virtual Assembly Assembly => throw NotImplemented.
ByDesign
;
20
public virtual string FullyQualifiedName => throw NotImplemented.
ByDesign
;
22
public virtual string Name => throw NotImplemented.
ByDesign
;
24
public virtual int MDStreamVersion => throw NotImplemented.
ByDesign
;
25
public virtual Guid ModuleVersionId => throw NotImplemented.
ByDesign
;
26
public virtual string ScopeName => throw NotImplemented.
ByDesign
;
29
public virtual void GetPEKind(out PortableExecutableKinds peKind, out ImageFileMachine machine) { throw NotImplemented.
ByDesign
; }
30
public virtual bool IsResource() { throw NotImplemented.
ByDesign
; }
32
public virtual bool IsDefined(Type attributeType, bool inherit) { throw NotImplemented.
ByDesign
; }
34
public virtual IList<CustomAttributeData> GetCustomAttributesData() { throw NotImplemented.
ByDesign
; }
35
public virtual object[] GetCustomAttributes(bool inherit) { throw NotImplemented.
ByDesign
; }
36
public virtual object[] GetCustomAttributes(Type attributeType, bool inherit) { throw NotImplemented.
ByDesign
; }
62
protected virtual MethodInfo? GetMethodImpl(string name, BindingFlags bindingAttr, Binder? binder, CallingConventions callConvention, Type[]? types, ParameterModifier[]? modifiers) { throw NotImplemented.
ByDesign
; }
67
public virtual MethodInfo[] GetMethods(BindingFlags bindingFlags) { throw NotImplemented.
ByDesign
; }
72
public virtual FieldInfo? GetField(string name, BindingFlags bindingAttr) { throw NotImplemented.
ByDesign
; }
77
public virtual FieldInfo[] GetFields(BindingFlags bindingFlags) { throw NotImplemented.
ByDesign
; }
80
public virtual Type[] GetTypes() { throw NotImplemented.
ByDesign
; }
87
public virtual Type? GetType(string className, bool throwOnError, bool ignoreCase) { throw NotImplemented.
ByDesign
; }
114
public virtual int MetadataToken => throw NotImplemented.
ByDesign
;
119
public virtual FieldInfo? ResolveField(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments) { throw NotImplemented.
ByDesign
; }
124
public virtual MemberInfo? ResolveMember(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments) { throw NotImplemented.
ByDesign
; }
129
public virtual MethodBase? ResolveMethod(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments) { throw NotImplemented.
ByDesign
; }
132
public virtual byte[] ResolveSignature(int metadataToken) { throw NotImplemented.
ByDesign
; }
134
public virtual string ResolveString(int metadataToken) { throw NotImplemented.
ByDesign
; }
139
public virtual Type ResolveType(int metadataToken, Type[]? genericTypeArguments, Type[]? genericMethodArguments) { throw NotImplemented.
ByDesign
; }
143
public virtual void GetObjectData(SerializationInfo info, StreamingContext context) { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\ParameterInfo.cs (4)
31
public virtual object? DefaultValue => throw NotImplemented.
ByDesign
;
32
public virtual object? RawDefaultValue => throw NotImplemented.
ByDesign
;
33
public virtual bool HasDefaultValue => throw NotImplemented.
ByDesign
;
42
public virtual IList<CustomAttributeData> GetCustomAttributesData() { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Reflection\PropertyInfo.cs (2)
48
public virtual object? GetConstantValue() { throw NotImplemented.
ByDesign
; }
49
public virtual object? GetRawConstantValue() { throw NotImplemented.
ByDesign
; }
src\libraries\System.Private.CoreLib\src\System\Runtime\CompilerServices\PoolingAsyncValueTaskMethodBuilderT.cs (2)
267
TResult IValueTaskSource<TResult>.GetResult(short token) => throw NotImplemented.
ByDesign
;
270
void IValueTaskSource.GetResult(short token) => throw NotImplemented.
ByDesign
;
src\libraries\System.Private.CoreLib\src\System\Text\Encoding.Internal.cs (7)
76
throw NotImplemented.
ByDesign
;
82
throw NotImplemented.
ByDesign
;
114
throw NotImplemented.
ByDesign
;
207
throw NotImplemented.
ByDesign
;
470
throw NotImplemented.
ByDesign
;
801
throw NotImplemented.
ByDesign
;
1066
throw NotImplemented.
ByDesign
;
src\libraries\System.Private.CoreLib\src\System\Type.cs (8)
49
public virtual bool IsTypeDefinition => throw NotImplemented.
ByDesign
;
56
public virtual bool IsConstructedGenericType => throw NotImplemented.
ByDesign
;
63
public virtual bool IsSZArray => throw NotImplemented.
ByDesign
;
147
public virtual bool IsSecurityCritical => throw NotImplemented.
ByDesign
;
148
public virtual bool IsSecuritySafeCritical => throw NotImplemented.
ByDesign
;
149
public virtual bool IsSecurityTransparent => throw NotImplemented.
ByDesign
;
465
public virtual MemberInfo[] GetDefaultMembers() => throw NotImplemented.
ByDesign
;
628
throw NotImplemented.
ByDesign
;