473,834 Members | 1,794 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

VAB - IValidatorDescr iptor is inaccessible due to protection level

Jay
In both of the UnitTest projects that ship with the Ent Lib, (VSTS and
Nunit), there is a TestMethod with the name:
AttributeWithLo werAndUpperBoun dsOnlyCreatesAp propriateValida tor.

Each of these tests creates a StringLengthVal idatorAttribute :
ValidatorAttrib ute attribute = new StringLengthVal idatorAttribute (10,
20);

The next line creates a validator object based on the settings defined
in the Attribute:
Validator validator =
((IValidatorDes criptor)attribu te).CreateValid ator(null, null, null);

The final step prior to being able to access the properties of the
StringLengthVal idator is:
StringLengthVal idator stringLengthVal idator = validator as
StringLengthVal idator;

The following is what I have completed in my UnitTest class. The
concept of my Unit Test is to loop through all properties defined in
my Entity class, and then through the Attributes defined for each
property.

Sample:

foreach (PropertyInfo myInfo in myType.GetPrope rties())
{
foreach (Attribute attribute in myInfo.GetCusto mAttributes(tru e))
{
if (attribute is
MSValidation.Va lidators.String LengthValidator Attribute)
{
Validator validator = ((IValidatorDes criptor)
(ValidatorAttri bute)attribute) .CreateValidato r(null, null, null);
Assert.IsNotNul l(validator);

StringLengthVal idator stringLengthVal idator = validator as
StringLengthVal idator;
Assert.IsNotNul l(stringLengthV alidator);
}
}
}

The issue is that I am getting a compile error of:

Microsoft.Pract ices.Enterprise Library.Validat ion.IValidatorD escriptor'
is inaccessible due to its protection level
D:\Development\ UnitTest\Entity \CustomerUnitTe st.cs

As expected, the IValidatorDescr iptor is not color-coded in my unit
test but is in the sample UnitTests. My project is referencing the
EntLib...Valida tion DLL but I am obviously missing something. Can you
help?

Thanks

May 28 '07 #1
5 2425
As expected, the IValidatorDescr iptor is not color-coded in my unit
test but is in the sample UnitTests. My project is referencing the
EntLib...Valida tion DLL but I am obviously missing something. Can you
help?
If I'm not mistaking the EntLib dll's have a [InternalsVisibl eTo]
Attribute which allows specific assemblies (including the provided test
assemblies) to see the internal variables.

Jesse
May 28 '07 #2
Jay
If I'm not mistaking the EntLib dll's have a [InternalsVisibl eTo]
Attribute which allows specific assemblies (including the provided test
assemblies) to see the internal variables.
I was looking at that attribute. However, isn't the attribute used in
the configuration of the source DLL and specifying the target assembly
that is permitted to use the Internals?

Meaning that in this scenario wouldn't I have to add that line
AssemblyInfo.cs file of the Enterprise Library object and permit my
object's access to the Enterprise Library methods?

Sorry, I'm new to the VAB and am trying to soak in as much as I can.

Thanks for your help,
Jay

May 28 '07 #3
Jay
Update...I managed to get this working.

I opened the actual VAB c# project ("D:\EntLib3Src \App Blocks\Src
\Validation\Val idation.csproj" ) and modified the AssemblyInfo.cs file
within this project to include the line:

[assembly: InternalsVisibl eTo("SourceAppl ication.UnitTes t")]

The SourceApplicati on.UnitTest is the namespace of my unit testing
project.

After re-compiling the application, I have taken the updated
"Microsoft.Prac tices.Enterpris eLibrary.Valida tion.dll" file and then
updated the reference to this DLL in my application. Presto! the
IValidatorDescr iptor is now accessible and can convert the attribute
into a valid Validator.

Thanks all for the help.

May 28 '07 #4
* Jay wrote, On 28-5-2007 20:44:
>If I'm not mistaking the EntLib dll's have a [InternalsVisibl eTo]
Attribute which allows specific assemblies (including the provided test
assemblies) to see the internal variables.

I was looking at that attribute. However, isn't the attribute used in
the configuration of the source DLL and specifying the target assembly
that is permitted to use the Internals?

Meaning that in this scenario wouldn't I have to add that line
AssemblyInfo.cs file of the Enterprise Library object and permit my
object's access to the Enterprise Library methods?
That is correct. So it isn't going to work with the default
pre-compiled, pre-signed assemblies.
Sorry, I'm new to the VAB and am trying to soak in as much as I can.
Don't worry.

Jesse
May 28 '07 #5
* Jay wrote, On 28-5-2007 21:43:
Update...I managed to get this working.

I opened the actual VAB c# project ("D:\EntLib3Src \App Blocks\Src
\Validation\Val idation.csproj" ) and modified the AssemblyInfo.cs file
within this project to include the line:

[assembly: InternalsVisibl eTo("SourceAppl ication.UnitTes t")]

The SourceApplicati on.UnitTest is the namespace of my unit testing
project.

After re-compiling the application, I have taken the updated
"Microsoft.Prac tices.Enterpris eLibrary.Valida tion.dll" file and then
updated the reference to this DLL in my application. Presto! the
IValidatorDescr iptor is now accessible and can convert the attribute
into a valid Validator.

Thanks all for the help.

You're welcome :)

Jesse
May 28 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
545
by: BlueOysterCult | last post by:
Hello I can't get around the error "inaccessible due to its protection level" - it points at a line that I am using .Sort() and BinarySearch() - but the real problem lies in another part of the code below(because the error says College.Persons_ThePersons....): /// /// Summary description for Persons. /// public class Persons
1
5080
by: Larry | last post by:
Thanks in advanced for your help I've added a TextBox1 and Button1 to a form in C# in VS.net 2003. When I double click on the Button1 at design time, a private method ButtonClick. I've defined a local variable inside the ButtonClick event named 'string strSample;'
1
17260
by: Larry | last post by:
I have a VB background and am developing a new windows app in Csharp. I'm getting the error. 'inaccessible due to its protection level' I've added a TextBox1 and a Button1 to a form. I double click the Button1 button. inside the method I type
1
2233
by: Chris | last post by:
Hi, New to C# programming. I'm trying to implement some simple security in my website. Basically a user cannot surf to secured aspx pages simply by accessing them directly through the address bar. If they have not logged in and created a forms authentication cookie they will be redirected to a friendly page telling them the page is inaccessible.
3
1915
by: tshad | last post by:
I am getting a message for my objects that say: testNulls.cs(13,33): error CS0122: 'FtsData.IntType.IntType()' is inaccessible due to its protection level I have a class calling objects out of another class, but same namespace. This is the class that gets the error: ************************************************************** namespace FtsData
2
2980
by: Jason Shohet | last post by:
I have a line: public System.Web.UI.HtmlControls.HtmlTable bldgInfo; Even though its public, for some reason every so often, .NET tells us that bldgInfo table is inaccessible due to the protection level. Its an html table -- but serverside. And it sits on a ascx (control). When we try to access that table from somewhere else, we get that error.
1
2588
by: Arjen | last post by:
Hi, I have this inside a webusercontrol: private string MenuItem = new string; Inside the .ascx file I do this: <%= MenuItem(0) %> And I get this error: ....is inaccessible due to its protection level
2
6947
by: sck10 | last post by:
Hello, I am getting the following error: fvServiceIdea_ItemUpdating_Validate(object, System.Web.UI.WebControls.FormViewUpdateEventArgs)' is inaccessible due to its protection level. Below is what I am using, so I don't understand what level of protection is being used. Any assistance with this would be greatly appreciated.
5
6622
by: Iain | last post by:
Hi All I have the code below (Using Delphi 2006 Developer to create an C# ASP.Net page to update a simple database table. When the page is fired I get the following error message +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Compiler Error Message: CS0122: 'LivLeadTime.WebForm2.Livery_DeleteCommand(object, System.Web.UI.WebControls.DataGridCommandEventArgs)' is inaccessible
0
9799
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10224
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7761
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6960
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5629
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5799
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4428
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3985
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3084
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.