Tagged Questions
2
votes
1answer
404 views
Unity: pass parameters to custom lifetime constructor, in xml configuration file
I wrote my CustomLifetimeManager like this:
public class CustomLifetimeManager <T> : LifetimeManager
{
private readonly string _arg;
public CustomLifetimeManager(string arg)
{
...
2
votes
4answers
101 views
problem with delegate
I've made this to call unmanaged function from C code. pCallback is a function pointer so on the managed side is a delegate.
[DllImport("MyDLL.dll")]
public static extern Result SetCallback(
...
2
votes
2answers
886 views
WCF channel lifetime with repeat calls
Maybe this is an obvious question, maybe it isn't. Imagine a GUI control application where every button push calls a different function on a remote WCF service. Button usage is frequent at ...
1
vote
0answers
97 views
Is it important to use InitializeLifetimeService for windows service members
Does I have to set the InitializeLifetimeService on the members that should be running as long as my application or service is running? by example of my own experience Because I build some services ...
1
vote
3answers
94 views
How long does an object in the CodeBehind live?
If I create an object in the code-behind of an .aspx page, how long can I expect that object to live? Will it live across post-backs? Could I pass it somehow to another page? Could I make it live as ...
0
votes
1answer
62 views
One-or-nothing implementation in MEF container
How do I make sure that the container was either an instance of the class, or it was not, depending on whether there is a link to it or not.
I using MEF container, C#
Edit:
In other words, I need ...
0
votes
1answer
869 views
What is the preferred way to handle this TCP connection in C#?
I have a server application (singleton, simple .NET console application) that talks to a GlobalCache GC-100-12 for the purpose of routing IR commands. Various .NET WinForm clients on the local network ...