Throwed when an Ipernity object has not been configured.
Use the method ConfigureIpernityObject(IpernityObject) to configure the object and allow it to interact with Ipernity
Namespace:
IpernityNET.IpernityObjectsAssembly: IpernityNET (in IpernityNET.dll) Version: 0.3.1.0 (0.3.1.0)
Syntax
Examples
CopyC#
Ipernity ipernity = new Ipernity("apikey", "apisecret", "token"); // throw an exception : Album album = new Album(123456); album.DocsGetList(); //do not throw exception Album album2 = new Album(123456); ipernity.ConfigureIpernityObject(album2); album2.DocsGetList();