void OnStoreAuthURLResponse(StoreAuthURLResponse_t pCallback, bool bIOFailure) {
		Debug.Log("[" + StoreAuthURLResponse_t.k_iCallback + " - StoreAuthURLResponse] - " + pCallback.m_szURL);
	}
        internal async Task <StoreAuthURLResponse_t?> RequestStoreAuthURL(string pchRedirectURL)
        {
            StoreAuthURLResponse_t?resultAsync = await StoreAuthURLResponse_t.GetResultAsync(this._RequestStoreAuthURL(this.Self, pchRedirectURL));

            return(resultAsync);
        }
 internal async Task <StoreAuthURLResponse_t?> RequestStoreAuthURL(string pchRedirectURL)
 {
     return(await StoreAuthURLResponse_t.GetResultAsync(_RequestStoreAuthURL( Self, pchRedirectURL )));
 }
Esempio n. 4
0
        internal async Task <StoreAuthURLResponse_t?> RequestStoreAuthURL([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8StringToNative))] string pchRedirectURL)
        {
            var returnValue = _RequestStoreAuthURL(Self, pchRedirectURL);

            return(await StoreAuthURLResponse_t.GetResultAsync(returnValue));
        }