up vote 3 down vote favorite
share [g+] share [fb]

Does anyone know if it is possible to prevent calling of a public constructor from outside a range of assemblies?

What I'm doing is coming up with a class library that has XML serializable classes. These classes make no sense if constructed without setting various properties so I want to prevent that state.

I'm wondering if there is a way to prevent anyone calling my public constructor, and keep it there only for serialization?

link|improve this question

Removed accessibility tag, not valid for this question. – Adrian Godong Jul 15 '09 at 11:27
1  
Why do you want to keep a constructor public, when you want to prevent it from being called? – Narendra N Jul 15 '09 at 11:29
feedback

8 Answers

up vote 4 down vote accepted

Check this answer: http://stackoverflow.com/questions/267724/why-xml-serializable-class-need-a-parameterless-constructor.

You may create internal or private constructor and still use XML serialization.

link|improve this answer
I did not know that. I've always thought it had to be public, but I just tried it with an internal one, and it worked. – John Saunders Jul 15 '09 at 11:31
John. I'd be interested to know how you got that to work? All of my unit tests fail if I attempt to use anything but Public constructors. – Ian Jul 15 '09 at 11:36
I also tried it with private and it works. Could you post the exception? – empi Jul 15 '09 at 11:39
System.MissingMethodException: No parameterless constructor defined for this object.. – Ian Jul 15 '09 at 11:39
1  
try (T)Activator.CreateInstance(elementType, true) – empi Jul 15 '09 at 11:43
show 4 more comments
feedback

Is it required that the constructors be public, or could you make them internal?

link|improve this answer
1  
Apparently, they claim here they don't - stackoverflow.com/questions/267724/… – kek444 Jul 15 '09 at 11:28
feedback

Typically, I would create a public constructor with parameters that will make the object valid and create a public parameterless constructor with valid default values.

public foo() {
  this.bar = -1;
}

public foo(int bar) {
  this.bar = bar;
}

Private/internal constructor can be used depending on your situation, and you can create a Factory pattern that deals with object creation for external code.

link|improve this answer
+1 just because I agree that normally you should initalize sensible values, however in this situation the values are other classes, which need to be correct. – Ian Jul 15 '09 at 11:47
feedback

If you do not explicitly call any constructor in the base class, the parameterless constructor will be called implicitly. There's no way around it, you cannot instantiate a class without a constructor being called.

link|improve this answer
feedback

To achieve what you are asking, you should probably make the constructor private, and then use a getInstance method to return the object if the correct assembly calls getInstance. You can do a check inside the getInstance method if you pass the object or assembly that called the function as one of its parameters.

link|improve this answer
feedback

You can create a factory method that takes assembly information in parameters and based on it you can filter it

Edit Sorry but i was making the edit and afterwards saw albertoPL answering the same

link|improve this answer
feedback

I don't know if it would work in your case, but you could check the calling assembly:

if (Assembly.GetCallingAssembly().GetName().Name == "Forbidden.Assembly")
{
    throw new Exception(...);
}
link|improve this answer
feedback

If your actual aim is to make it impossible to instantiate an object of your class except by calling certain constructors, unfortunately that's impossible to ensure.

link|improve this answer
No. He thought (and so did I) that a public constructor was necessary for the XML Serializer to use, but he didn't really want a public constructor. Answer: you don't need one. – John Saunders Jul 15 '09 at 11:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.