Miscaleneous
Overview
Some assorted links to useful sections of the Microsoft documentation or other useful expainers.
Contents
Asynchronous APIs
- Async methods were built for processes that may take some time to complete and therefore need to run in parallel in the background while processes for things such as the UI continue to run as well. This stops longer processes from blocking up the thread and inhibiting the UX.
- Overview explanation of asynchronous APIs in Microsoft documentation here.
- How to call an async method here
The HoloLens Desktop App
- For the setup
- IPv4 address, one-time code, username and password, etc
The HoloLens Emulator (What’s the Point?)
#if […] #endif
- This is also in HoloLensAndUnity.md
- This is an example of where Unity and HoloLens development don’t fit together.
- Universal Windows Platform (UWP) C# and Unity C# are not the same language (described in this way here)
- In order to use commands that don’t exist in Unity but to still enable the project to build #if/#else/#endif statements are used to tell Unity to ignore certain section of the code.
- Example here
Web Requests (Unresolved)
- This blog post suggests why web requests can be difficult but may have A potential solution.
- Unity and UWP not directly compatible/Microsoft protecting against potential attacks as with file access?
- This server can be used to test network requests.