diff --git a/EveLib.EveCrest/EveCrest.cs b/EveLib.EveCrest/EveCrest.cs index 77be46c..4c09335 100644 --- a/EveLib.EveCrest/EveCrest.cs +++ b/EveLib.EveCrest/EveCrest.cs @@ -326,10 +326,22 @@ public EveCrest(string refreshToken, string encodedKey) // return QueryOptionsAsync(uri).Result; //} + /// + /// Queries the options asynchronous. + /// + /// + /// The href. + /// Task<CrestOptions>. public Task QueryOptionsAsync(ICrestResource href) where T : class, ICrestResource { return optionsAsync(href.Uri.ToString()); } + /// + /// Queries the options. + /// + /// + /// The href. + /// CrestOptions. public CrestOptions QueryOptions(ICrestResource href) where T : class, ICrestResource { return QueryOptionsAsync(href).Result; } diff --git a/EveLib.EveCrest/EveLib.EveCrest.nuspec b/EveLib.EveCrest/EveLib.EveCrest.nuspec index 82c100c..9d386fa 100644 --- a/EveLib.EveCrest/EveLib.EveCrest.nuspec +++ b/EveLib.EveCrest/EveLib.EveCrest.nuspec @@ -11,7 +11,7 @@ false $description$ - https://github.com/ezet/evelib/releases/tag/EveCrest_v3.3.1 + https://github.com/ezet/evelib/releases/tag/EveCrest_v3.3.2 EveLib EveCrest API EveOnline Eve Online Crest diff --git a/EveLib.EveCrest/Models/EditableEntity.cs b/EveLib.EveCrest/Models/EditableEntity.cs index 9f792d7..d94e708 100644 --- a/EveLib.EveCrest/Models/EditableEntity.cs +++ b/EveLib.EveCrest/Models/EditableEntity.cs @@ -21,11 +21,6 @@ namespace eZet.EveLib.EveCrestModule.Models { /// [DataContract] public class EditableEntity : IEditableEntity { - /// - /// Gets or sets a value indicating whether this instance is new. - /// - /// true if this instance is new; otherwise, false. - //public bool SaveAsNew { get; set; } /// /// Gets or sets the eve crest. @@ -33,9 +28,16 @@ public class EditableEntity : IEditableEntity { /// The eve crest. public EveCrest EveCrest { get; set; } - //[DataMember(Name = "href")] + /// + /// Gets or sets the post URI. + /// + /// The post URI. public string PostUri { get; set; } - + + /// + /// Gets or sets the href. + /// + /// The href. [DataMember(Name = "href")] public string Href { get; set; } @@ -73,6 +75,10 @@ public class EditableEntity : IEditableEntity { return DeleteAsync().Result; } + /// + /// Shoulds the serialize href. + /// + /// System.Boolean. public bool ShouldSerializeHref() => false; } diff --git a/EveLib.EveCrest/Models/ICrestResource.cs b/EveLib.EveCrest/Models/ICrestResource.cs index 00f2481..b86cdd1 100644 --- a/EveLib.EveCrest/Models/ICrestResource.cs +++ b/EveLib.EveCrest/Models/ICrestResource.cs @@ -4,9 +4,9 @@ // Created : 12-16-2014 // // Last Modified By : Lars Kristian -// Last Modified On : 12-17-2014 +// Last Modified On : 03-17-2016 // *********************************************************************** -// +// // Copyright (c) . All rights reserved. // // @@ -19,6 +19,10 @@ using eZet.EveLib.EveCrestModule.Models.Links; namespace eZet.EveLib.EveCrestModule.Models { + /// + /// Interface ICrestResource + /// + /// public interface ICrestResource where T : class, ICrestResource { /// /// Gets or sets the crest instance used to query resources. diff --git a/EveLib.EveCrest/Models/IEditableEntity.cs b/EveLib.EveCrest/Models/IEditableEntity.cs index 211db07..8048a41 100644 --- a/EveLib.EveCrest/Models/IEditableEntity.cs +++ b/EveLib.EveCrest/Models/IEditableEntity.cs @@ -5,11 +5,6 @@ namespace eZet.EveLib.EveCrestModule.Models { /// Interface IEditableEntity /// public interface IEditableEntity { - /// - /// Gets or sets a value indicating whether this instance is new. - /// - /// true if this instance is new; otherwise, false. - //bool SaveAsNew { get; set; } /// /// Gets or sets the eve crest. @@ -17,9 +12,16 @@ public interface IEditableEntity { /// The eve crest. EveCrest EveCrest { get; set; } - + /// + /// Gets or sets the post URI. + /// + /// The post URI. string PostUri { get; set; } + /// + /// Gets or sets the href. + /// + /// The href. string Href { get; set; } /// diff --git a/EveLib.EveCrest/Properties/AssemblyInfo.cs b/EveLib.EveCrest/Properties/AssemblyInfo.cs index 927b7b5..47067c3 100644 --- a/EveLib.EveCrest/Properties/AssemblyInfo.cs +++ b/EveLib.EveCrest/Properties/AssemblyInfo.cs @@ -36,6 +36,6 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("3.3.1.0")] -[assembly: AssemblyFileVersion("3.3.1.0")] +[assembly: AssemblyVersion("3.3.2.0")] +[assembly: AssemblyFileVersion("3.3.2.0")] [assembly: NeutralResourcesLanguage("en")] \ No newline at end of file