StoreDev / StoreLib

Storelib is a DotNet library that provides APIs to interact with the various Microsoft Store endpoints.
Mozilla Public License 2.0
152 stars 50 forks source link

Trim down QueryDCATAsync functions #7

Closed tuxuser closed 4 years ago

tuxuser commented 4 years ago

Before

public async Task QueryDCATAsync(string ID);
public async Task QueryDCATAsync(string ID, string AuthenticationToken);
public async Task QueryDCATAsync(string ID, IdentiferType IDType);
public async Task QueryDCATAsync(string ID, IdentiferType IDType, string AuthenticationToken);

Now

public async Task QueryDCATAsync(string ID, IdentiferType IDType = IdentiferType.ProductID, string AuthenticationToken = null);