System.Reflection is a namespace of the .NET framework. It contains types that retrieve information about assemblies, modules, members, parameters, and other entities in managed code by examining their metadata.
0
votes
1answer
50 views
Reflection type load exception when adding a class to ptoject
Im currently developing a c# wpf app, it works fine until i add a vhd c++ wrapper class to my project, witch is pritty large so im not posting it here and it works fine by itself. In my project when ...
1
vote
2answers
34 views
Get assembly version in PCL
I have the following line of code in .NET 4.5 that I am trying to build as Portable Class Library. It's purpose is to get assembly version:
this.GetType().Assembly.GetName().Version.Major;
The ...
2
votes
1answer
32 views
Get DataMembers from DLL assembly using System.Reflection
I'm trying to use Assembly class to get [DataMember]'s from my [ServiceContract]. The problem is, my method returns an empty collection...
Here's my code:
Assembly assembly = ...
0
votes
1answer
62 views
c# or VB.net About casting an object into a datatype
is there a way for you to be able to cast an object depending on whats the datatype written as a string after instanciating it through relfection? for example:
string datatype = ...
1
vote
1answer
33 views
Invoking interface method, but System.Reflection.MethodBase set as System.Object
I am trying to invoke a generic interface method at runtime, however it seems when looking up the type info it is finding IDomainEventSubscriber rather than the correct type passed.
A runtime error ...
0
votes
2answers
27 views
Return types of generic interface implementations from a provided type
Given a class that implements an interface:
public interface DomainEventSubscriber<T>
{
void HandleEvent(T domainEvent);
}
public class TestEventHandler : ...
0
votes
2answers
36 views
C# Load Assembly w/ Common References
I've run into a slight issue - I'm writing a program that loads DLLs, each of which contain a class which inherits from a class existing in a library referenced by both the loaded DLL and the "host" ...
2
votes
1answer
36 views
Winforms: getting Publish Version number?
I've got a Winforms app and want to display the version number so that we can know if our update scripts are running correctly. Is there a way to get the Publish Version number (as displayed in the ...
1
vote
2answers
127 views
Get method Caller (Controller Name and Action Name ) in castle windsor interceptor method
I want to find Controller and Action name in dynamic proxy interceptor method
i check stack trace approch not good way beacase it not last in stack
this my code
global asax castle config
...
0
votes
2answers
79 views
.Net Reflection Property Info of a PropertyInfo
I have a class structure like below,
Class A
{
ClassB objB {get; set;}
int data {get; set;}
}
Class B
{
int x {get; set;}
int data {get; set;}
}
Now I need to use reflection on ...
1
vote
1answer
41 views
Reflection and autogenerated types
I have a class with a single method that uses a "yield" return statement. A nested type is automatically created. Using reflection with binding flags set to BindingFlags.DeclaredOnly, I get this ...
0
votes
1answer
45 views
Get NameSpace of my Test Class
I have a webdriver solution that has 10 or so projects in it. 1 core assembly/dll that holds all the common methods and 9 other test assemblies that use those methods in their tests.
I need to ...
0
votes
1answer
21 views
How to use GetPropertyValueSafely from CommonLibrary.NET?
When using the CommonLibrary.Net, how does one use the GetPropertyValueSafely() function correctly?
I want to do something like this:
public static string APP_TITLE = ...
0
votes
1answer
21 views
Invoking result of MethodBase.GetCurrentMethod for generic method of generic type
I've got a generic method within a generic class. Inside this method, I need to call the same method for a parent type if the method's generic parameter's type isn't mapped, but the parent it. I'm ...
0
votes
0answers
23 views
How to iterate through class hierarchy to get rid of 'invalid character in xml' error
I'm using XmlSerializer to serialize my object which has many other class objects as its properties. These other class objects also have some other class objects as properties.
Ex.
Class A
{
Test1 ...
1
vote
3answers
150 views
Attached properties of WPF controls
I am still working on automated testing of WPF apps. I need to access properties by name to achieve this.
Currently I am wondering about attached properties of WPF controls. I tried to iterate ...
0
votes
2answers
60 views
Finding classes in a DLL that inherit from classes in an unavailable assembly
I'm developing a tool that loads add-ins into a piece of commercial software we use in my office. Add-ins for this software can be developed by creating a .NET assembly with classes that inherit from ...
4
votes
3answers
76 views
How do I look up the internal properties of a C# class? protected? protected internal?
If I have a C# class MyClass as below:
using System.Diagnostics;
namespace ConsoleApplication1
{
class MyClass
{
public int pPublic {get;set;}
private int pPrivate {get;set;}
...
0
votes
1answer
60 views
Linq group by using reflection
I have data table "Car" which have 3 cols (owner, carType, colour). My question is how can i make the grouping portion more dynamic by using reflection. my idea is add the grouping col in to array, ...
12
votes
5answers
2k views
Load an EXE file and run it from memory using C#
Im trying to run executables from memory such as outlined in this article. I can run any .net/managed exes quite easily. But I cannot run executables such as notepad.exe or calc.exe. How can I get it ...
0
votes
1answer
57 views
is there any way to search through cs file
I have a requirement to list out the methods in the cs files and list the each method call inside a method .
For example : i have a class
public void method1 ()
{
c2.M2();
}
public void method2 ...
0
votes
1answer
64 views
Ninject causing deployment issues on GoDaddy
I'm attempting to deploy a website that uses Ninject for DI which works well locally on my development machine. When deployed to GoDaddy hosting, I get the following error:
Method not found: ...
8
votes
4answers
173 views
How are CIL 'fault' clauses different from 'catch' clauses in C#?
According to the CLI standard (Partition IIA, chapter 18) and the MSDN reference page for the System.Reflection.ExceptionHandlingClauseOptions enum, there are four different kinds of exception handler ...
0
votes
2answers
201 views
Create object instance of a class having its name in string variable
I don't know the thing I am asking is available or not but I just want to know if it exists and how it works. So here is my question:
I have 2-3 custom model class of my own. For example, ...
2
votes
1answer
63 views
Error while trying to call method
I have this code:
var work = new DynamicMethod("work", null, Type.EmptyTypes);
var il = work.GetILGenerator();
il.Emit(OpCodes.Ldstr, "a");
il.Emit(OpCodes.Call, ...
0
votes
1answer
40 views
EventListeners Not getting called with Instance created through Reflection
Apologies had a typo...have edited...
I have a weird issue I am not sure about.
In one piece of code I have a class which is called as a singleton which has an event other classes can listen to, ...
0
votes
1answer
58 views
How to get name of current property [duplicate]
I've got a class
public class News : Record
{
public News()
{
}
public LocaleValues Name { get; set; }
public LocaleValues Body;
}
And in my LocaleValues class i have:
public ...
20
votes
6answers
8k views
Difference between LoadFile and LoadFrom with .NET Assemblies?
I was looking at the msdn documentation and I am still a little confused on what exactly is the difference between using LoadFile and LoadFrom when loading an assembly. Can someone provide an example ...
0
votes
0answers
102 views
How to read the entire content of satellite assemblies without referring programmatically?
I need to be able to read the contents of satellite assembly when its location given along with its culture info. so, i cant add a reference to this assembly at compile time and i will not know the ...
2
votes
2answers
876 views
How to dynamically load XAML for getting Controls information
I am trying to load a Silverlight project to read every XAML file by creating an instance using reflection, Activator.CreateInstance, of every XAML class for reading its controls.
C# Code:
string ...
0
votes
0answers
76 views
Create an instance of generic class using MethodInfo.ReturnParameter
i am currently programming in C# on .Net 4.0, and I cannot find a solution for the next:
I am using reflection and in some part of my code I create an instance of MethodInfo, but now I need to create ...
0
votes
2answers
47 views
Are private members included in TypeInfo Declared properties?
Does the new TypeInfo class include private members by default in its "DeclaredXXX" properties?
1
vote
1answer
129 views
System.NullReferenceException When Trying To Load Functions From A DLL File - C#
I'm creating an add-on system for a shell I'm developing using C#. I've followed this and this. Here is my function to load an add-on:
public void loadAppFromDLL(string assemblyFile)
{
Assembly a ...
0
votes
2answers
293 views
C# Set variable using string that has variable name inside
*Switched over to serailization.
Summary: I have all the variables pre-defined as null / 0. I want to set them using data from and XML document. The document contains the exact same names as the ...
0
votes
3answers
64 views
How does Type.Attributes of C# work?
So System.Type has an instance method called Attributes.
public TypeAttributes Attributes { get; }
which returns an enum of type TypeAttributes. Here are some members of this enum:
public enum ...
0
votes
1answer
172 views
System.Reflection.Assembly.GetEntryAssembly() is null when calling from Web App
I am developing a web application in visual studio 2010 with target framework - 3.5
I am using a dll (developed by another team) in which i get an error for following code :
string strName = ...
10
votes
1answer
131 views
Is C# namespace separator (.) defined somewhere?
Full name separator in C# is period character (.). e.g. System.Console.Write.
Is this defined somewhere like Path.PathSeperator, or is it hard coded in .NET reflection classes as well?
(e.g. is ...
0
votes
1answer
87 views
How to set Property value using Reflection?
I try to build a Generic Method which take class and set value using reflection and return a class type.
protected static T GetSecureModel<T>(T model)
{
T secureModel = ...
4
votes
1answer
89 views
Why isn't 0==0?
Activator.CreateInstance(p.PropertyType) == value is false
Given a type T:
public class ODataTestHelper
{
public int DataId { get; set; }
public string DataItem { ...
1
vote
2answers
114 views
Type.GetInterface returning null
My issue is that I am getting different results to our older DLLs from history, when very little has changed and I don't under how the changes are relevant to the error shown.
This is part of a ...
1
vote
4answers
70 views
Singleton vs GetSafeUninitializedObject
I came across this answer by Marc Gravell on how to create an object without calling its constructor. Can someone confirm this will not circumvent even the complete and best implementation of ...
0
votes
1answer
53 views
Reflection issue
Suppose I have an interface called IVerifier
public interface IVerifier
{
bool Validate(byte[]x, byte[]y);
}
and I had to load an assembly by reflection, and that assembly holds the same ...
0
votes
1answer
96 views
What is the best way to map from/to a Dictionary with objects properties based on an interface as contract?
I'm working on a very dynamic Silverlight Application where viewmodels are dynamic models.
The WCF service returns a Response object that contains enough information (TableName property and an ...
0
votes
1answer
128 views
Issue with CompileAssemblyFromSource when called from a WCF app
I have a WCF service that exposes a method. When a client calls this method, the following occurs:
1) the method does some processing
2) it tries to load an assembly if its already there
3) if the ...
1
vote
1answer
36 views
What libraries are available to introspect third-party .NET applications [closed]
I have an application that needs to introspect running third-party .NET applications - for which I have no source. I need to be able to read the on-screen forms, controls and their on-screen relative ...
1
vote
1answer
195 views
System.Reflection.RuntimeMethodInfo.Equals fails with NullReferenceException in .NET 3.5
I'm encountering quite a strange behaviour when comparing MethodBase instances with Equals method using .NET Framework 3.5 - it just fails with NullReferenceException in case when comparing ...
3
votes
1answer
78 views
Sandboxing a .NET Assembly - Upload a DLL and then Reflection
I'd like to write an MVC application that allows someone in our development group to upload a .NET assembly, and then I want to reflect over the .dll to gather information from it. I want to do this ...
0
votes
0answers
73 views
VB .Net In run-time finding nested classes and checking if they implement a specific Interface
I'm facing the following challenge:
I have a base class that implements a simple custom interface (ISerialize). When calling it's method from a derived class I need to:
1. find if the derived class ...
3
votes
2answers
222 views
Using System.Type to call a generic method
I am using C#/.NET 4.0 and a Protocol Buffers library (protobuf-net) which provides the following functionality.
public static class Serializer {
public static void Serialize<T>(Stream ...
3
votes
2answers
266 views
I need an alternative to `Assembly.GetEntryAssembly()` that never returns null
I need to find the assembly in which managed code execution started.
// using System.Reflection;
Assembly entryAssembly = Assembly.GetEntryAssembly();
This seems like the way to go, but the MSDN ...


