Enterprise Library version 2 ConfigurationElementType

  • Thread starter Thread starter adrian.hilder
  • Start date Start date
A

adrian.hilder

I building myself a small reference project using as much of Enterprise
Library version 2 / .NET 2 (EL2) as I can. Generally finding it easier
than earlier versions.

Using the security application block I am in the process of building a
custom authorization provider derived from AuthorizationProvider. In
the example code with EL2 there is an example of this I have more or
less copied, cannot get it to compile because ConfigurationElementType
"could not be found". Can anyone tell me which namespace or EL block
this is in that I need to reference. Searched every where I know for
the answer to no avail.
TIA
Adrian
 
Thus wrote (e-mail address removed),
I building myself a small reference project using as much of
Enterprise Library version 2 / .NET 2 (EL2) as I can. Generally
finding it easier than earlier versions.

Using the security application block I am in the process of building a
custom authorization provider derived from AuthorizationProvider. In
the example code with EL2 there is an example of this I have more or
less copied, cannot get it to compile because ConfigurationElementType
"could not be found". Can anyone tell me which namespace or EL block
this is in that I need to reference. Searched every where I know for
the answer to no avail.

It's in the docs:

Namespace: Microsoft.Practices.EnterpriseLibrary.Common.Configuration
Assembly: Microsoft.Practices.EnterpriseLibrary.Common (in microsoft.practices.enterpriselibrary.common.dll)

Cheers,
 
Thank you! Working now.
I'm working with Visual Web Developer Express which may be more limited
on the help documents, I see nothing for ConfigurationElementType.
 
Back
Top