diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-24 17:04:00 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-24 17:06:00 -0700 |
commit | 7c480e5ef6e56ab233dd1e53c6e4adb0832811e5 (patch) | |
tree | c311c4ba456ecfdbfc9280c13c49d7f4c39ea030 /src | |
parent | 94c8302c0d7c00dba6cb8131f13b407d07492f3c (diff) | |
download | DotNetOpenAuth-7c480e5ef6e56ab233dd1e53c6e4adb0832811e5.zip DotNetOpenAuth-7c480e5ef6e56ab233dd1e53c6e4adb0832811e5.tar.gz DotNetOpenAuth-7c480e5ef6e56ab233dd1e53c6e4adb0832811e5.tar.bz2 |
Removed Identifier.OriginalString from the public API to avoid generating confusion with users.
Diffstat (limited to 'src')
-rw-r--r-- | src/DotNetOpenAuth/OpenId/Identifier.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/OpenId/Identifier.cs b/src/DotNetOpenAuth/OpenId/Identifier.cs index 831dfa9..8ac4f58 100644 --- a/src/DotNetOpenAuth/OpenId/Identifier.cs +++ b/src/DotNetOpenAuth/OpenId/Identifier.cs @@ -36,7 +36,7 @@ namespace DotNetOpenAuth.OpenId { /// <summary> /// Gets the original string that was normalized to create this Identifier. /// </summary> - public string OriginalString { get; private set; } + internal string OriginalString { get; private set; } /// <summary> /// Gets or sets a value indicating whether <see cref="Identifier"/> instances are considered equal |