summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
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 });
}
}