diff options
Diffstat (limited to 'src/DotNetOAuth/Messaging/MessagePartAttribute.cs')
-rw-r--r-- | src/DotNetOAuth/Messaging/MessagePartAttribute.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/DotNetOAuth/Messaging/MessagePartAttribute.cs b/src/DotNetOAuth/Messaging/MessagePartAttribute.cs index 91053b6..2e089c2 100644 --- a/src/DotNetOAuth/Messaging/MessagePartAttribute.cs +++ b/src/DotNetOAuth/Messaging/MessagePartAttribute.cs @@ -37,11 +37,11 @@ namespace DotNetOAuth.Messaging { }
/// <summary>
- /// Gets or sets the name of the serialized form of this member in the message.
+ /// Gets the name of the serialized form of this member in the message.
/// </summary>
public string Name {
get { return this.name; }
- set { this.name = string.IsNullOrEmpty(value) ? null : value; }
+ private set { this.name = string.IsNullOrEmpty(value) ? null : value; }
}
/// <summary>
|