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
0answers
6 views
probing with ASP.NET and reflection and unity
I'm facing a unique problem. I have following site structure
MainSite
Bin
Sub feature
bin.
It can be seen that the Bin folder specific to the sub features are present under the sub features ...
0
votes
1answer
57 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 ...
2
votes
1answer
38 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
67 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
2answers
37 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 ...
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
38 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
42 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 ...
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
42 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
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
47 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
24 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
2answers
61 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 ...
0
votes
0answers
25 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 ...
4
votes
3answers
77 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;}
...
1
vote
3answers
157 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
1answer
63 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, ...
0
votes
2answers
215 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, ...
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
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
59 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 ...
1
vote
2answers
130 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
0answers
104 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 ...
0
votes
0answers
80 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
131 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
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
176 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
132 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
2answers
304 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 ...
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 { ...
0
votes
1answer
89 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 = ...
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 ...
0
votes
1answer
100 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
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 ...
1
vote
4answers
71 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 ...
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
202 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
79 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
74 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
228 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
269 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 ...
0
votes
1answer
65 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: ...
3
votes
1answer
221 views
why can't I use GetType().GetProperty() on objects that inherit from DynamicObject?
I'm trying to retrive fields or properties from a dynamic class using reflection, but when I call the dynamic object using Getfield or GetProperty it can never find the field and none of the dynamic ...
0
votes
1answer
33 views
Reflection loading FAILURE in Sharepoint and SUCCESS in Console
I'm facing a problem loading via refletion my class.
this code:
PublishingClass = Type.GetType("CONST STRING FULLY QUALIFIED", true);
Works if I'm in a console app but fails (Could not Load "CONST ...
0
votes
2answers
83 views
Type introspection - get property or fields information
if you do need to get a required information, being a field or properties values / names,
HOW could you do it not by using System.Reflection ?
public class anyClass
{
public const string ...
0
votes
1answer
126 views
using lambda to extract member info via System.Reflection
I am trying to use system Reflection to enable extraction of a class member (type int)
var CurrTblID = typeof(currProjData).GetMembers(
BindingFlags.Public ...
0
votes
1answer
103 views
Get mem address of a Method's body whose assembly is loaded through Assembly.load
I have loaded an assembly B into the appdomain of assembly A using Assembly.load().
B has a method named "X" which i need to retrieve its memory address/pointer.
I understand that B is mapped into ...



