Exemple #1
0
 internal async Task <RemoteStorageFileShareResult_t?> FileShare(string pchFile)
 {
     return(await RemoteStorageFileShareResult_t.GetResultAsync(_FileShare( Self, pchFile )));
 }
	void OnRemoteStorageFileShareResult(RemoteStorageFileShareResult_t pCallback, bool bIOFailure) {
		Debug.Log("[" + RemoteStorageFileShareResult_t.k_iCallback + " - RemoteStorageFileShareResult] - " + pCallback.m_eResult + " -- " + pCallback.m_hFile);
		if (pCallback.m_eResult == EResult.k_EResultOK) {
			m_UGCHandle = pCallback.m_hFile;
		}
	}
 internal async Task <RemoteStorageFileShareResult_t?> FileShare([MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(Utf8StringToNative))] string pchFile)
 {
     return(await RemoteStorageFileShareResult_t.GetResultAsync(_FileShare( Self, pchFile )));
 }
Exemple #4
0
        internal async Task <RemoteStorageFileShareResult_t?> FileShare(string pchFile)
        {
            RemoteStorageFileShareResult_t?resultAsync = await RemoteStorageFileShareResult_t.GetResultAsync(this._FileShare(this.Self, pchFile));

            return(resultAsync);
        }