1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-09-20 06:05:46 +02:00
MLEM/Docs/api/MLEM.Misc.MlemPlatform.yml

837 lines
28 KiB
YAML
Raw Normal View History

### YamlMime:ManagedReference
items:
- uid: MLEM.Misc.MlemPlatform
commentId: T:MLEM.Misc.MlemPlatform
id: MlemPlatform
parent: MLEM.Misc
children:
- MLEM.Misc.MlemPlatform.AddTextInputListener(Microsoft.Xna.Framework.GameWindow,MLEM.Misc.MlemPlatform.TextInputCallback)
- MLEM.Misc.MlemPlatform.Current
- MLEM.Misc.MlemPlatform.EnsureExists
- MLEM.Misc.MlemPlatform.OpenLinkOrFile(System.String)
- MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard(System.String,System.String,System.String,System.Boolean)
langs:
- csharp
- vb
name: MlemPlatform
nameWithType: MlemPlatform
fullName: MLEM.Misc.MlemPlatform
type: Class
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: MlemPlatform
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 14
assemblies:
- MLEM
namespace: MLEM.Misc
summary: >-
MlemPlatform is a wrapper around some of MonoGame's platform-dependent behavior to allow for MLEM to stay platform-independent.
See <xref href="MLEM.Misc.MlemPlatform.DesktopGl%601" data-throw-if-not-resolved="false"></xref>, <xref href="MLEM.Misc.MlemPlatform.DesktopFna" data-throw-if-not-resolved="false"></xref>, <xref href="MLEM.Misc.MlemPlatform.Mobile" data-throw-if-not-resolved="false"></xref> and <xref href="MLEM.Misc.MlemPlatform.None" data-throw-if-not-resolved="false"></xref>, as well as the online documentation at https://mlem.ellpeck.de/articles/ui.html#text-input for information on the specific platforms.
The MLEM demos' main classes also make use of this functionality: https://github.com/Ellpeck/MLEM/blob/main/Demos.DesktopGL/Program.cs#L8 and https://github.com/Ellpeck/MLEM/blob/main/Demos.Android/Activity1.cs#L33.
example: []
syntax:
content: public abstract class MlemPlatform
content.vb: Public MustInherit Class MlemPlatform
inheritance:
- System.Object
derivedClasses:
- MLEM.Misc.MlemPlatform.DesktopFna
- MLEM.Misc.MlemPlatform.DesktopGl`1
- MLEM.Misc.MlemPlatform.Mobile
- MLEM.Misc.MlemPlatform.None
inheritedMembers:
- System.Object.ToString
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- uid: MLEM.Misc.MlemPlatform.Current
commentId: F:MLEM.Misc.MlemPlatform.Current
id: Current
parent: MLEM.Misc.MlemPlatform
langs:
- csharp
- vb
name: Current
nameWithType: MlemPlatform.Current
fullName: MLEM.Misc.MlemPlatform.Current
type: Field
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: Current
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 20
assemblies:
- MLEM
namespace: MLEM.Misc
summary: >-
The current MLEM platform
Set this value before starting your game if you want to use platform-dependent MLEM features.
example: []
syntax:
content: public static MlemPlatform Current
return:
type: MLEM.Misc.MlemPlatform
content.vb: Public Shared Current As MlemPlatform
- uid: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard(System.String,System.String,System.String,System.Boolean)
commentId: M:MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard(System.String,System.String,System.String,System.Boolean)
id: OpenOnScreenKeyboard(System.String,System.String,System.String,System.Boolean)
parent: MLEM.Misc.MlemPlatform
langs:
- csharp
- vb
name: OpenOnScreenKeyboard(string, string, string, bool)
nameWithType: MlemPlatform.OpenOnScreenKeyboard(string, string, string, bool)
fullName: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard(string, string, string, bool)
type: Method
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: OpenOnScreenKeyboard
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 31
assemblies:
- MLEM
namespace: MLEM.Misc
summary: >-
Opens the on-screen keyboard if one is required by the platform.
Note that, if no on-screen keyboard is required, a null string should be returned.
example: []
syntax:
content: public abstract Task<string> OpenOnScreenKeyboard(string title, string description, string defaultText, bool usePasswordMode)
parameters:
- id: title
type: System.String
description: Title of the dialog box.
- id: description
type: System.String
description: Description of the dialog box.
- id: defaultText
type: System.String
description: Default text displayed in the input area.
- id: usePasswordMode
type: System.Boolean
description: If password mode is enabled, the characters entered are not displayed.
return:
type: System.Threading.Tasks.Task{System.String}
description: Text entered by the player. Null if back was used.
content.vb: Public MustOverride Function OpenOnScreenKeyboard(title As String, description As String, defaultText As String, usePasswordMode As Boolean) As Task(Of String)
overload: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard*
nameWithType.vb: MlemPlatform.OpenOnScreenKeyboard(String, String, String, Boolean)
fullName.vb: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard(String, String, String, Boolean)
name.vb: OpenOnScreenKeyboard(String, String, String, Boolean)
- uid: MLEM.Misc.MlemPlatform.AddTextInputListener(Microsoft.Xna.Framework.GameWindow,MLEM.Misc.MlemPlatform.TextInputCallback)
commentId: M:MLEM.Misc.MlemPlatform.AddTextInputListener(Microsoft.Xna.Framework.GameWindow,MLEM.Misc.MlemPlatform.TextInputCallback)
id: AddTextInputListener(Microsoft.Xna.Framework.GameWindow,MLEM.Misc.MlemPlatform.TextInputCallback)
parent: MLEM.Misc.MlemPlatform
langs:
- csharp
- vb
name: AddTextInputListener(GameWindow, TextInputCallback)
nameWithType: MlemPlatform.AddTextInputListener(GameWindow, MlemPlatform.TextInputCallback)
fullName: MLEM.Misc.MlemPlatform.AddTextInputListener(Microsoft.Xna.Framework.GameWindow, MLEM.Misc.MlemPlatform.TextInputCallback)
type: Method
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: AddTextInputListener
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 39
assemblies:
- MLEM
namespace: MLEM.Misc
summary: >-
Adds a text input listener to this platform, if supported.
The supplied listener will be called whenever a character is input.
example: []
syntax:
content: public abstract void AddTextInputListener(GameWindow window, MlemPlatform.TextInputCallback callback)
parameters:
- id: window
type: Microsoft.Xna.Framework.GameWindow
description: The game's window
- id: callback
type: MLEM.Misc.MlemPlatform.TextInputCallback
description: The callback that should be called whenever a character is pressed
content.vb: Public MustOverride Sub AddTextInputListener(window As GameWindow, callback As MlemPlatform.TextInputCallback)
overload: MLEM.Misc.MlemPlatform.AddTextInputListener*
- uid: MLEM.Misc.MlemPlatform.OpenLinkOrFile(System.String)
commentId: M:MLEM.Misc.MlemPlatform.OpenLinkOrFile(System.String)
id: OpenLinkOrFile(System.String)
parent: MLEM.Misc.MlemPlatform
langs:
- csharp
- vb
name: OpenLinkOrFile(string)
nameWithType: MlemPlatform.OpenLinkOrFile(string)
fullName: MLEM.Misc.MlemPlatform.OpenLinkOrFile(string)
type: Method
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: OpenLinkOrFile
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 45
assemblies:
- MLEM
namespace: MLEM.Misc
summary: >-
A method that should be executed to open a link in the browser or a file explorer.
This method is currently used only by MLEM.Ui's implementation of the <xref href="MLEM.Formatting.Codes.LinkCode" data-throw-if-not-resolved="false"></xref> formatting code.
example: []
syntax:
content: public abstract void OpenLinkOrFile(string link)
parameters:
- id: link
type: System.String
content.vb: Public MustOverride Sub OpenLinkOrFile(link As String)
overload: MLEM.Misc.MlemPlatform.OpenLinkOrFile*
nameWithType.vb: MlemPlatform.OpenLinkOrFile(String)
fullName.vb: MLEM.Misc.MlemPlatform.OpenLinkOrFile(String)
name.vb: OpenLinkOrFile(String)
- uid: MLEM.Misc.MlemPlatform.EnsureExists
commentId: M:MLEM.Misc.MlemPlatform.EnsureExists
id: EnsureExists
parent: MLEM.Misc.MlemPlatform
langs:
- csharp
- vb
name: EnsureExists()
nameWithType: MlemPlatform.EnsureExists()
fullName: MLEM.Misc.MlemPlatform.EnsureExists()
type: Method
source:
remote:
path: MLEM/Misc/MlemPlatform.cs
branch: main
repo: https://github.com/Ellpeck/MLEM
id: EnsureExists
path: ../MLEM/Misc/MlemPlatform.cs
startLine: 51
assemblies:
- MLEM
namespace: MLEM.Misc
summary: Ensures that <xref href="MLEM.Misc.MlemPlatform.Current" data-throw-if-not-resolved="false"></xref> is set to a valid <xref href="MLEM.Misc.MlemPlatform" data-throw-if-not-resolved="false"></xref> value by throwing an <xref href="System.InvalidOperationException" data-throw-if-not-resolved="false"></xref> exception if <xref href="MLEM.Misc.MlemPlatform.Current" data-throw-if-not-resolved="false"></xref> is null.
example: []
syntax:
content: public static void EnsureExists()
content.vb: Public Shared Sub EnsureExists()
overload: MLEM.Misc.MlemPlatform.EnsureExists*
exceptions:
- type: System.InvalidOperationException
commentId: T:System.InvalidOperationException
description: If <xref href="MLEM.Misc.MlemPlatform.Current" data-throw-if-not-resolved="false"></xref> is null
references:
- uid: MLEM.Misc.MlemPlatform.DesktopGl`1
commentId: T:MLEM.Misc.MlemPlatform.DesktopGl`1
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform.DesktopGl<T>
nameWithType: MlemPlatform.DesktopGl<T>
fullName: MLEM.Misc.MlemPlatform.DesktopGl<T>
nameWithType.vb: MlemPlatform.DesktopGl(Of T)
fullName.vb: MLEM.Misc.MlemPlatform.DesktopGl(Of T)
name.vb: MlemPlatform.DesktopGl(Of T)
spec.csharp:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.DesktopGl`1
name: DesktopGl
href: MLEM.Misc.MlemPlatform.DesktopGl-1.html
- name: <
- name: T
- name: '>'
spec.vb:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.DesktopGl`1
name: DesktopGl
href: MLEM.Misc.MlemPlatform.DesktopGl-1.html
- name: (
- name: Of
- name: " "
- name: T
- name: )
- uid: MLEM.Misc.MlemPlatform.DesktopFna
commentId: T:MLEM.Misc.MlemPlatform.DesktopFna
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform.DesktopFna
nameWithType: MlemPlatform.DesktopFna
fullName: MLEM.Misc.MlemPlatform.DesktopFna
spec.csharp:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.DesktopFna
name: DesktopFna
href: MLEM.Misc.MlemPlatform.DesktopFna.html
spec.vb:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.DesktopFna
name: DesktopFna
href: MLEM.Misc.MlemPlatform.DesktopFna.html
- uid: MLEM.Misc.MlemPlatform.Mobile
commentId: T:MLEM.Misc.MlemPlatform.Mobile
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform.Mobile
nameWithType: MlemPlatform.Mobile
fullName: MLEM.Misc.MlemPlatform.Mobile
spec.csharp:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.Mobile
name: Mobile
href: MLEM.Misc.MlemPlatform.Mobile.html
spec.vb:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.Mobile
name: Mobile
href: MLEM.Misc.MlemPlatform.Mobile.html
- uid: MLEM.Misc.MlemPlatform.None
commentId: T:MLEM.Misc.MlemPlatform.None
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform.None
nameWithType: MlemPlatform.None
fullName: MLEM.Misc.MlemPlatform.None
spec.csharp:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.None
name: None
href: MLEM.Misc.MlemPlatform.None.html
spec.vb:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.None
name: None
href: MLEM.Misc.MlemPlatform.None.html
- uid: MLEM.Misc
commentId: N:MLEM.Misc
href: MLEM.html
name: MLEM.Misc
nameWithType: MLEM.Misc
fullName: MLEM.Misc
spec.csharp:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Misc
name: Misc
href: MLEM.Misc.html
spec.vb:
- uid: MLEM
name: MLEM
href: MLEM.html
- name: .
- uid: MLEM.Misc
name: Misc
href: MLEM.Misc.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.MemberwiseClone
commentId: M:System.Object.MemberwiseClone
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
name: MemberwiseClone()
nameWithType: object.MemberwiseClone()
fullName: object.MemberwiseClone()
nameWithType.vb: Object.MemberwiseClone()
fullName.vb: Object.MemberwiseClone()
spec.csharp:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
spec.vb:
- uid: System.Object.MemberwiseClone
name: MemberwiseClone
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: MLEM.Misc.MlemPlatform
commentId: T:MLEM.Misc.MlemPlatform
parent: MLEM.Misc
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform
nameWithType: MlemPlatform
fullName: MLEM.Misc.MlemPlatform
- uid: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard*
commentId: Overload:MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard
href: MLEM.Misc.MlemPlatform.html#MLEM_Misc_MlemPlatform_OpenOnScreenKeyboard_System_String_System_String_System_String_System_Boolean_
name: OpenOnScreenKeyboard
nameWithType: MlemPlatform.OpenOnScreenKeyboard
fullName: MLEM.Misc.MlemPlatform.OpenOnScreenKeyboard
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: System.Threading.Tasks.Task{System.String}
commentId: T:System.Threading.Tasks.Task{System.String}
parent: System.Threading.Tasks
definition: System.Threading.Tasks.Task`1
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<string>
nameWithType: Task<string>
fullName: System.Threading.Tasks.Task<string>
nameWithType.vb: Task(Of String)
fullName.vb: System.Threading.Tasks.Task(Of String)
name.vb: Task(Of String)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: )
- uid: System.Threading.Tasks.Task`1
commentId: T:System.Threading.Tasks.Task`1
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
name: Task<TResult>
nameWithType: Task<TResult>
fullName: System.Threading.Tasks.Task<TResult>
nameWithType.vb: Task(Of TResult)
fullName.vb: System.Threading.Tasks.Task(Of TResult)
name.vb: Task(Of TResult)
spec.csharp:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: <
- name: TResult
- name: '>'
spec.vb:
- uid: System.Threading.Tasks.Task`1
name: Task
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks.task-1
- name: (
- name: Of
- name: " "
- name: TResult
- name: )
- uid: System.Threading.Tasks
commentId: N:System.Threading.Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Threading.Tasks
nameWithType: System.Threading.Tasks
fullName: System.Threading.Tasks
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Threading
name: Threading
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading
- name: .
- uid: System.Threading.Tasks
name: Tasks
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.threading.tasks
- uid: MLEM.Misc.MlemPlatform.AddTextInputListener*
commentId: Overload:MLEM.Misc.MlemPlatform.AddTextInputListener
href: MLEM.Misc.MlemPlatform.html#MLEM_Misc_MlemPlatform_AddTextInputListener_Microsoft_Xna_Framework_GameWindow_MLEM_Misc_MlemPlatform_TextInputCallback_
name: AddTextInputListener
nameWithType: MlemPlatform.AddTextInputListener
fullName: MLEM.Misc.MlemPlatform.AddTextInputListener
- uid: Microsoft.Xna.Framework.GameWindow
commentId: T:Microsoft.Xna.Framework.GameWindow
parent: Microsoft.Xna.Framework
isExternal: true
name: GameWindow
nameWithType: GameWindow
fullName: Microsoft.Xna.Framework.GameWindow
- uid: MLEM.Misc.MlemPlatform.TextInputCallback
commentId: T:MLEM.Misc.MlemPlatform.TextInputCallback
parent: MLEM.Misc
href: MLEM.Misc.MlemPlatform.html
name: MlemPlatform.TextInputCallback
nameWithType: MlemPlatform.TextInputCallback
fullName: MLEM.Misc.MlemPlatform.TextInputCallback
spec.csharp:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.TextInputCallback
name: TextInputCallback
href: MLEM.Misc.MlemPlatform.TextInputCallback.html
spec.vb:
- uid: MLEM.Misc.MlemPlatform
name: MlemPlatform
href: MLEM.Misc.MlemPlatform.html
- name: .
- uid: MLEM.Misc.MlemPlatform.TextInputCallback
name: TextInputCallback
href: MLEM.Misc.MlemPlatform.TextInputCallback.html
- uid: Microsoft.Xna.Framework
commentId: N:Microsoft.Xna.Framework
isExternal: true
name: Microsoft.Xna.Framework
nameWithType: Microsoft.Xna.Framework
fullName: Microsoft.Xna.Framework
spec.csharp:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
spec.vb:
- uid: Microsoft
name: Microsoft
isExternal: true
- name: .
- uid: Microsoft.Xna
name: Xna
isExternal: true
- name: .
- uid: Microsoft.Xna.Framework
name: Framework
isExternal: true
- uid: MLEM.Formatting.Codes.LinkCode
commentId: T:MLEM.Formatting.Codes.LinkCode
href: MLEM.Formatting.Codes.LinkCode.html
name: LinkCode
nameWithType: LinkCode
fullName: MLEM.Formatting.Codes.LinkCode
- uid: MLEM.Misc.MlemPlatform.OpenLinkOrFile*
commentId: Overload:MLEM.Misc.MlemPlatform.OpenLinkOrFile
href: MLEM.Misc.MlemPlatform.html#MLEM_Misc_MlemPlatform_OpenLinkOrFile_System_String_
name: OpenLinkOrFile
nameWithType: MlemPlatform.OpenLinkOrFile
fullName: MLEM.Misc.MlemPlatform.OpenLinkOrFile
- uid: MLEM.Misc.MlemPlatform.Current
commentId: F:MLEM.Misc.MlemPlatform.Current
parent: MLEM.Misc.MlemPlatform
href: MLEM.Misc.MlemPlatform.html#MLEM_Misc_MlemPlatform_Current
name: Current
nameWithType: MlemPlatform.Current
fullName: MLEM.Misc.MlemPlatform.Current
- uid: System.InvalidOperationException
commentId: T:System.InvalidOperationException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.invalidoperationexception
name: InvalidOperationException
nameWithType: InvalidOperationException
fullName: System.InvalidOperationException
- uid: MLEM.Misc.MlemPlatform.EnsureExists*
commentId: Overload:MLEM.Misc.MlemPlatform.EnsureExists
href: MLEM.Misc.MlemPlatform.html#MLEM_Misc_MlemPlatform_EnsureExists
name: EnsureExists
nameWithType: MlemPlatform.EnsureExists
fullName: MLEM.Misc.MlemPlatform.EnsureExists