StoreDev / StoreLib

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

Trim down QueryDCATAsync functions #7

Closed tuxuser closed 3 years ago

tuxuser commented 3 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);