Manages all current file protocols://. File protocols such as http, cache, dynamic, scene etc enable PowerUI to load files in custom ways - for example if your game uses a specialised cdn, you may easily implement it as a new FileProtocol.
Static Public Member Functions | |
static void | Add (Type protocolType) |
Adds the given file protocol to the global set for use. Note that you do not need to call this manually; Just deriving from FileProtocol is all that is required. More... | |
static FileProtocol | Get (string protocol) |
Gets a protocol by the given name. More... | |
Static Public Attributes | |
static string | UnrecognisedProtocolHandler ="http" |
Http is used for any unrecognised protocols. This is useful with e.g. links to apps, such as ms-windows-store:// When a link like that occurs, and it's not overriden with a custom handler, http will deal with it (and subsequently pop it up externally). More... | |
static Dictionary< string, FileProtocol > | Protocols |
The set of available protocols. Use get to access. More... | |
|
inlinestatic |
Adds the given file protocol to the global set for use. Note that you do not need to call this manually; Just deriving from FileProtocol is all that is required.
protocolType | The type of the protocol to add. |
|
inlinestatic |
Gets a protocol by the given name.
protocol | The name of the protocol, e.g. "http". |
|
static |
The set of available protocols. Use get to access.
|
static |
Http is used for any unrecognised protocols. This is useful with e.g. links to apps, such as ms-windows-store:// When a link like that occurs, and it's not overriden with a custom handler, http will deal with it (and subsequently pop it up externally).