Class AvatarUrls
Avatar information, has 16x16,24x24,32x32,48x48 Urls See: Jira project
Inheritance
System.Object
AvatarUrls
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace:Dapplo.Jira.Entities
Assembly:Dapplo.Jira.dll
Syntax
[JsonObject]
public class AvatarUrls
Properties
| Improve this Doc View SourceExtraLarge
Url to the 48x48 Avatar
Declaration
[JsonProperty(PropertyName = "48x48")]
public Uri ExtraLarge { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Large
Url to the 32x32 Avatar
Declaration
[JsonProperty(PropertyName = "32x32")]
public Uri Large { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Medium
Url to the 24x24 Avatar
Declaration
[JsonProperty(PropertyName = "24x24")]
public Uri Medium { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Small
Url to the 16x16 Avatar
Declaration
[JsonProperty(PropertyName = "16x16")]
public Uri Small { get; set; }
Property Value
Type | Description |
---|---|
System.Uri |
Methods
| Improve this Doc View SourceGetUri(AvatarSizes)
Helper method to get the Uri for a certain avatar size
Declaration
public Uri GetUri(AvatarSizes avatarSize)
Parameters
Type | Name | Description |
---|---|---|
AvatarSizes | avatarSize |
Returns
Type | Description |
---|---|
System.Uri | Uri |
Exceptions
Type | Condition |
---|---|
System.ArgumentException | when an unknown avatar size is requested |