QuagganWrapper Class |
Namespace: GW2CSharp.V2.Unauthenticated.Quaggans
public class QuagganWrapper : ApiBase
The QuagganWrapper type exposes the following members.
Name | Description | |
---|---|---|
![]() | QuagganWrapper | Initializes a new instance of the QuagganWrapper class |
Name | Description | |
---|---|---|
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | Get |
Returns a single quaggan that matches the id.
|
![]() | GetAll |
Returns all known quaggans.
|
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
public void GetAQuaggan() { Quaggan cakeQuaggan = GW2Api.V2().Quaggans.Get("cake"); } public void GetQuagganImage() { Bitmap cakeQuagganImage = GW2Api.V2().Quaggans.Get("cake").GetImage(); } public void GetAllQuaggans() { IEnumerable<Lazy<Quaggan>> quaggans = GW2Api.V2().Quaggans.GetAll(); }