Activator is a .NET class that can create dynamically-typed object instances at runtime.
1
vote
3answers
47 views
System.Activator.CreateInstance and threading
I am calling an outside application, which turns an XML into a PDF.
dynamic generator = null;
Assembly a = Assembly.LoadFrom(file);
Type type = a.GetType("Application.ConsoleStartup.Program");
...
0
votes
2answers
41 views
Nullable problems with Activator.CreateInstance and Convert.ChangeType
I have a third party library which sets a given objects property using reflection as follows. (This is the simplified version)
public void Set(object obj, string prop, object value) {
var propInf ...
1
vote
1answer
41 views
Dynamically creating different objects from a dataset
I am attempting to use a DataTable to create and populate a group of objects. I was hoping to create one function that would know what type of object to create based on the type passed into the ...
0
votes
1answer
21 views
Creating Generic class object using CreateInstance
I have following code sample
public interface ITest
{
string abc { get; set; }
}
public class GenericController<T> : Controller where T : class, ITest, new()
{
public string abc { ...
0
votes
0answers
11 views
missingmethodexception when calling createinstance on appdomain
I am working on a web-based enterprise application which handles requests from multiple clients. To maintain the separation of data between the clients, I'm thinking of using AppDomains.
Consider the ...
0
votes
0answers
34 views
Non Public New / Check wether the Cache already exists bevor instantiation
I'm new to the whole Caching problem so just point me to the right articles if this is a solved problem and I didn't find the answer to it :-)
I'm trying to make sure nobody ever calls a new for a ...
0
votes
2answers
99 views
Activator.CreateInstance() specific class type instance
this question is an addition to this previously asked question.
My child classes which should be initialised and the base class which will be the list type
abstract public class baseClass
{
...
0
votes
1answer
126 views
C# Compile in memory and create instance of memory assembly types
How can I Load an assembly to memory and instatiate one of its types by using their name?
I have this to compile:
/// <summary>
/// Compiles the input string and saves it in memory
...
2
votes
0answers
101 views
How can one extend Activator on iOS to recognize new input gestures?
I'm working on a custom Jailbreak solution on iOS. I'm trying to be able to add new triggers in Activator. Specifically I'm trying to define a tap-release-tap-and-hold behavior for the home button ...
0
votes
0answers
79 views
ContractFilter mismatch at the EndpointDispatcher exception in WCF
I am getting this error when trying to call self hosted wcf service
Exception:
System.Runtime.Remoting.ServerException was unhandled by user code
Message=The message with Action
...
0
votes
1answer
54 views
Initialize classes of dynamic types
I have a method where I need to dynamically change the class used depending on user settings as below, class dEnvelope needs to have its properties initialized as well to fill all subclasses and used ...
1
vote
2answers
106 views
Add class into current assembly
I have a current assembly in my application and I would like to add a class from external cs file into this assembly. Is it possible to do it? I would like to use it like plug-ins. Now I'm trying use:
...
0
votes
1answer
70 views
What is the expected LifeStyle of a Castle Windsor component activator?
I'm using Castle Windsor and DynamicProxy to implement persistence Lazy Loading from scratch (I know NHibernate could be an option etc.) I have implemented a custom component activator to always ...
2
votes
2answers
70 views
Is it possible to call Activator.CreateInstance on a type in an assembly that is not statically referenced?
Is is possible to user Activator.CreateInstance() to instantiate a type given the Type.FullName and Assembly Name even though the assembly is not referenced by the executing assembly?
0
votes
1answer
30 views
Creating instance of a template type with class inheritance
I have an issue which I can't seem to solve.
Suppose I have classes set up like this:
public abstract class GenericCustomerInformation
{
//abstract methods declared here
}
public class Emails : ...
5
votes
4answers
168 views
Cannot perform explicit cast
Can you clarify me why in this piece of code:
private Dictionary<Type, Type> viewTypeMap = new Dictionary<Type, Type>();
public void ShowView<TView>(ViewModelBase viewModel, bool ...
2
votes
1answer
105 views
Activator.CreateInstance with two interfaces
I have a project I am working on that I would like to leverage Activator.createInstance with so that I can dynamically pull class names out of XML. The classes must subscribe to at least one of two ...
0
votes
0answers
11 views
Activator class is not invoked when executing an Ant task
I am working with Eclipse. I have created a plugin A that has an class A and a build.xml file.
Build.xml file defines a new task that invokes class A.
Class A has an execute() method that invokes ...
0
votes
3answers
50 views
start() method in Activator is not invoked in Eclipse headless
I am executing Eclipse headless (via java -jar org.eclipse.equinox.launcher_.jar) and I realized that when I invoke a class that is inside a plugin with an Activator defined as "Activate this plugin ...
0
votes
0answers
13 views
Call controls from external class
I am trying to generate an Control Combobox by a function however I dont see the Control appear on my tab, can anybody say what I do wrong......
public T Create<T>(params object[] args) ...
0
votes
0answers
41 views
Exception: Specified element is already the logical child of another element. Disconnect it first
Project on WPF.
Code:
// 1st way
var viewModel = _container.Resolve<TViewModel>();
// 2nd
//var viewModel = Activator.CreateInstance(typeof (TViewModel));
Items.Add(viewModel);
Here Items ...
2
votes
3answers
107 views
Creating a class instance from type
I'm trying to create an instance of a class that I can add to a list in a generic way..
I know the type of class that needs to be made and i've been able to make an object of the class using the code ...
0
votes
3answers
149 views
C# private T CreateObject<T>()
i want to create an instance of object with a dynamic parameter like
private Type ClassType { get; set; }
model = (CreateObject<typeof(this.ClassType)>)ser.Deserialize(sr);
private T ...
0
votes
1answer
259 views
how to create an instance of class and set properties from a Bag object like session
the class will be declared in runtime and values are stored in a Bag object like session or ViewBag . Now I want to create an instance of the class and set it's properties using Bag data . I know ...
1
vote
1answer
218 views
Activator.CreateInstance causing nunit to lock which prevents visual studio building
After I run my test that runs my suspect code; I cannot rebuild the assembly in Visual Studio until Nunit (or more specifically nunit-agent.exe) is ended.
The error is:
Could not copy ...
0
votes
2answers
176 views
Why do I get an error 'Activator.CreateInstance can't find the constructor' while create Lazy<>?
I have classes like below. The TestOne method is running but the TestTwo is not running. Because the TestTwo has a parameter. The Activator gives an error. How can I solve this reason ?
I need to use ...
2
votes
4answers
164 views
Create instance with Activator
Assume we have some classes
class Class1{ }
class Class2{ }
class Class3{ }
and I have a Type variable
Type t = /*some type unknown at compile-time*/;
variable t is Class1 or Class2 or Class3. I ...
0
votes
2answers
221 views
How can I instantiate a COM class interface generically
I'm trying to refactor a piece of code and ran out of options I can think off.
This is the original code I had:
if (WebConfigSettings.ComPartition == null && HttpContext.Current ...
0
votes
0answers
84 views
How to use late binding using Reflection
Here is the example on how to do late Binding using .NET Late Binding
This example shows you how to pick different database layer based on user's choice.
Oracle database access layer is being used on ...
2
votes
1answer
527 views
Activator.CreateInstance<T> vs Compiled Expression. Inverse performance on two different machines
A friend and I were testing using compiled expressions for object creation instead of Activator.CreateInstance<T> and ran into some interesting results. We found that when we ran the same code ...
0
votes
2answers
220 views
C# Activator createInstance for extending class
I have a base class, which is as follows:
public Data()
{
id = num++;
SetVariables();
}
//fill every Variable varNames, parseInduction, noise, seperator in Children ...
2
votes
1answer
375 views
Trouble making an Activator listener (With theos)
I have recently started learning how to develop tweaks with theos, hook into apps etc. I wanted to make an Activator listener that simply speaks out Test. Speak out test not log, yes I know.
I ...
4
votes
2answers
663 views
Use Compiled Lambda expression instead of Activator.CreateInstance to initialize SoapHttpClientProtocol object
I'm working with the code that dynamically instantiates SoapHttpClientProtocol object (proxy class) and uses this object to make a call to WS-Basic I Web Service. Here is the simplified version of my ...
0
votes
0answers
69 views
ios5 activator redpark plugin
i have a redpark serial cable connected from an arduino to my iPhone. all up and running and pass info back and fourth.
what I'm after is every time i plug the cable into the iPhone dock, activator ...
4
votes
2answers
592 views
What is the advantage of UnityContainer.Resolve over Activator.CreateInstance?
I'm just getting started with Unity. I am still wondering what its advantages are.
UnityContainer().Resolve<T>() which can return
a concrete instance of the type that is registered for the ...
3
votes
1answer
622 views
How to convert [TYPE] to nullable<[TYPE]> in C#?
Question:
I wrote a method to retrieve a SQL result as a list of a class instead of a datatable.
The problem is, I have a int field in the database, which is nullable.
If I hit a row with a NULL ...
0
votes
1answer
159 views
MPMediaItem changing properties
I try to write Activator action for changing current song rating.
I now that we can read MPMediaItemPropertyRating property and get rating.
But how can we change it from app?
0
votes
2answers
300 views
Create class from string
I'm trying to create a class from its name held in a string. I've tried a bunch of things but always get "Value cannot be null"
Here's the class
public static readonly ...
0
votes
1answer
914 views
How to fix Activator.CreateInstance failing with MissingMethodException “Constructor on type not found”?
I'm trying to create a custom User Control with the following:
var panel = new GenericAccordionPanel<ZoneReport, ZonesPanel, ZonesVM>(myVm.ZonesVm);
GenericAccordionPanel is defined as:
...
0
votes
1answer
234 views
Activator Crashes on combobox set autocomplete mode
i need to instantiate forms using activator because i need to iterate all form's controls to set a property. For this procedure i'm using the code below.
using (Form frm = ...
3
votes
4answers
1k views
It's able to use Activator.CreateInstance with Interface?
I have an example:
Assembly asm = Assembly.Load("ClassLibrary1");
Type ob = asm.GetType("ClassLibrary1.UserControl1");
UserControl uc = ...
0
votes
1answer
67 views
using Log4net and Activator.CreateInstance
I am using log4net to log my application,
I have weird issue , I have some class that created dynamically using Activator.CreateInstance.
But for some reason that classes don’t write the log,
Any ...
0
votes
0answers
177 views
WCF - Web Service: Activator.CreateInstance(t) Fails
I am wroking on a Web Service where i must call to BaaN (CRM). The code works on console but fails when i create a web service with it.
This is the code:
Type t;
t = ...
1
vote
4answers
354 views
Check if Object is Interface via Activator.CreateInstance
I am using Activator.CreateInstance to create an object from a Dll at run time,
If the object is an Interface I get an error and I don't want to create an object of that interface.
So my question is ...
0
votes
0answers
537 views
invalid activator
i know there are other questions on the subject but i' ve tried them all and didn' t work for me. I want to write some output to excel files from my rcp plug in but it shows: ...
1
vote
0answers
164 views
access to ASP.NET session when using Activator.CreateInstance to execute a class method
I have an ASP.NET site that checks for specific requests (Begin_request in global.asax). If a certain request comes in, which in this case is executed via javascript, reflection is used to run a ...
2
votes
2answers
949 views
Is it possible to CreateInstance of object with protected constructor?
Greetings fellow members, the situation in question is such:
public abstract class BaseClass
{
protected BaseClass()
{
// some logic here
}
protected BaseClass(Object ...
0
votes
1answer
50 views
How create instance for datrow dynamically using Activator
i want to create instance for datarow using activator like this
dataItem = Activator.CreateInstance<T>();
while i using this code i got exception
No parameterless constructor defined for ...
0
votes
1answer
315 views
Activator.CreateInstance with inherited class not in the same project
I have a solution that contains two projects.
First of let me describe my scenario.
Project 1: holds a base class calls MyBaseClass
with the following two property and method that i'm interested in:
...
1
vote
3answers
77 views
How to create an instance of a type defined in a Web Site Project (App_Code) from another library
I'm trying to create an instance of type defined in a Web Site Project. The type name is configurable, so therefor known, but for the assembly name is not possible to tell the name at the ...


