summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2011-07-10 20:56:20 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2011-07-10 20:56:20 -0700
commitea9d0bb76e032b35ab290f10bd2267c2bdc768c9 (patch)
treec452e7ee2c595521a2a8a19798c907f8664c6357 /src
parentd54af6987b7a21862a6f13a71f5b0aeca070a75b (diff)
downloadDotNetOpenAuth-ea9d0bb76e032b35ab290f10bd2267c2bdc768c9.zip
DotNetOpenAuth-ea9d0bb76e032b35ab290f10bd2267c2bdc768c9.tar.gz
DotNetOpenAuth-ea9d0bb76e032b35ab290f10bd2267c2bdc768c9.tar.bz2
Fixed fully-qualified type name bug.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth.Messaging/Configuration/TypeConfigurationCollection.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Messaging/Configuration/TypeConfigurationCollection.cs b/src/DotNetOpenAuth.Messaging/Configuration/TypeConfigurationCollection.cs
index 000cb6a..93415d5 100644
--- a/src/DotNetOpenAuth.Messaging/Configuration/TypeConfigurationCollection.cs
+++ b/src/DotNetOpenAuth.Messaging/Configuration/TypeConfigurationCollection.cs
@@ -34,7 +34,7 @@ namespace DotNetOpenAuth.Configuration {
Contract.Requires<ArgumentNullException>(elements != null);
foreach (Type element in elements) {
- this.BaseAdd(new TypeConfigurationElement<T> { TypeName = element.FullName });
+ this.BaseAdd(new TypeConfigurationElement<T> { TypeName = element.AssemblyQualifiedName });
}
}