mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-14 10:09:09 +01:00
597 lines
19 KiB
YAML
597 lines
19 KiB
YAML
|
### YamlMime:ManagedReference
|
||
|
items:
|
||
|
- uid: MLEM.Data.Content.RawContentReader
|
||
|
commentId: T:MLEM.Data.Content.RawContentReader
|
||
|
id: RawContentReader
|
||
|
parent: MLEM.Data.Content
|
||
|
children:
|
||
|
- MLEM.Data.Content.RawContentReader.CanRead(System.Type)
|
||
|
- MLEM.Data.Content.RawContentReader.GetFileExtensions
|
||
|
- MLEM.Data.Content.RawContentReader.Read(MLEM.Data.Content.RawContentManager,System.String,System.IO.Stream,System.Type,System.Object)
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: RawContentReader
|
||
|
nameWithType: RawContentReader
|
||
|
fullName: MLEM.Data.Content.RawContentReader
|
||
|
type: Class
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentReader.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: RawContentReader
|
||
|
path: ../MLEM.Data/Content/RawContentReader.cs
|
||
|
startLine: 8
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Represents a way for any kind of raw content file to be read using a <xref href="MLEM.Data.Content.RawContentManager" data-throw-if-not-resolved="false"></xref>
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public abstract class RawContentReader
|
||
|
content.vb: Public MustInherit Class RawContentReader
|
||
|
inheritance:
|
||
|
- System.Object
|
||
|
derivedClasses:
|
||
|
- MLEM.Data.Content.JsonReader
|
||
|
- MLEM.Data.Content.RawContentReader`1
|
||
|
- MLEM.Data.Content.XmlReader
|
||
|
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.Data.Content.RawContentReader.CanRead(System.Type)
|
||
|
commentId: M:MLEM.Data.Content.RawContentReader.CanRead(System.Type)
|
||
|
id: CanRead(System.Type)
|
||
|
parent: MLEM.Data.Content.RawContentReader
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: CanRead(Type)
|
||
|
nameWithType: RawContentReader.CanRead(Type)
|
||
|
fullName: MLEM.Data.Content.RawContentReader.CanRead(System.Type)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentReader.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: CanRead
|
||
|
path: ../MLEM.Data/Content/RawContentReader.cs
|
||
|
startLine: 15
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Returns if the given type can be loaded by this content reader
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public abstract bool CanRead(Type t)
|
||
|
parameters:
|
||
|
- id: t
|
||
|
type: System.Type
|
||
|
description: The type of asset
|
||
|
return:
|
||
|
type: System.Boolean
|
||
|
description: If the type can be loaded by this content reader
|
||
|
content.vb: Public MustOverride Function CanRead(t As Type) As Boolean
|
||
|
overload: MLEM.Data.Content.RawContentReader.CanRead*
|
||
|
- uid: MLEM.Data.Content.RawContentReader.Read(MLEM.Data.Content.RawContentManager,System.String,System.IO.Stream,System.Type,System.Object)
|
||
|
commentId: M:MLEM.Data.Content.RawContentReader.Read(MLEM.Data.Content.RawContentManager,System.String,System.IO.Stream,System.Type,System.Object)
|
||
|
id: Read(MLEM.Data.Content.RawContentManager,System.String,System.IO.Stream,System.Type,System.Object)
|
||
|
parent: MLEM.Data.Content.RawContentReader
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: Read(RawContentManager, string, Stream, Type, object)
|
||
|
nameWithType: RawContentReader.Read(RawContentManager, string, Stream, Type, object)
|
||
|
fullName: MLEM.Data.Content.RawContentReader.Read(MLEM.Data.Content.RawContentManager, string, System.IO.Stream, System.Type, object)
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentReader.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: Read
|
||
|
path: ../MLEM.Data/Content/RawContentReader.cs
|
||
|
startLine: 26
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Reads the content file from disk and returns it.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public abstract object Read(RawContentManager manager, string assetPath, Stream stream, Type t, object existing)
|
||
|
parameters:
|
||
|
- id: manager
|
||
|
type: MLEM.Data.Content.RawContentManager
|
||
|
description: The <xref href="MLEM.Data.Content.RawContentManager" data-throw-if-not-resolved="false"></xref> that is loading the asset
|
||
|
- id: assetPath
|
||
|
type: System.String
|
||
|
description: The full path to the asset, starting from the <xref href="Microsoft.Xna.Framework.Content.ContentManager.RootDirectory" data-throw-if-not-resolved="false"></xref>
|
||
|
- id: stream
|
||
|
type: System.IO.Stream
|
||
|
description: A stream that leads to this asset
|
||
|
- id: t
|
||
|
type: System.Type
|
||
|
description: The type of asset to load
|
||
|
- id: existing
|
||
|
type: System.Object
|
||
|
description: If this asset is being reloaded, this value contains the previous version of the asset.
|
||
|
return:
|
||
|
type: System.Object
|
||
|
description: The loaded asset
|
||
|
content.vb: Public MustOverride Function Read(manager As RawContentManager, assetPath As String, stream As Stream, t As Type, existing As Object) As Object
|
||
|
overload: MLEM.Data.Content.RawContentReader.Read*
|
||
|
nameWithType.vb: RawContentReader.Read(RawContentManager, String, Stream, Type, Object)
|
||
|
fullName.vb: MLEM.Data.Content.RawContentReader.Read(MLEM.Data.Content.RawContentManager, String, System.IO.Stream, System.Type, Object)
|
||
|
name.vb: Read(RawContentManager, String, Stream, Type, Object)
|
||
|
- uid: MLEM.Data.Content.RawContentReader.GetFileExtensions
|
||
|
commentId: M:MLEM.Data.Content.RawContentReader.GetFileExtensions
|
||
|
id: GetFileExtensions
|
||
|
parent: MLEM.Data.Content.RawContentReader
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GetFileExtensions()
|
||
|
nameWithType: RawContentReader.GetFileExtensions()
|
||
|
fullName: MLEM.Data.Content.RawContentReader.GetFileExtensions()
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM.Data/Content/RawContentReader.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: GetFileExtensions
|
||
|
path: ../MLEM.Data/Content/RawContentReader.cs
|
||
|
startLine: 32
|
||
|
assemblies:
|
||
|
- MLEM.Data
|
||
|
namespace: MLEM.Data.Content
|
||
|
summary: Represents the list of file extensions that this reader can read from.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public abstract string[] GetFileExtensions()
|
||
|
return:
|
||
|
type: System.String[]
|
||
|
description: The list of valid extensions
|
||
|
content.vb: Public MustOverride Function GetFileExtensions() As String()
|
||
|
overload: MLEM.Data.Content.RawContentReader.GetFileExtensions*
|
||
|
references:
|
||
|
- uid: MLEM.Data.Content.RawContentManager
|
||
|
commentId: T:MLEM.Data.Content.RawContentManager
|
||
|
parent: MLEM.Data.Content
|
||
|
href: MLEM.Data.Content.RawContentManager.html
|
||
|
name: RawContentManager
|
||
|
nameWithType: RawContentManager
|
||
|
fullName: MLEM.Data.Content.RawContentManager
|
||
|
- uid: MLEM.Data.Content
|
||
|
commentId: N:MLEM.Data.Content
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Data.Content
|
||
|
nameWithType: MLEM.Data.Content
|
||
|
fullName: MLEM.Data.Content
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data.Content
|
||
|
name: Content
|
||
|
href: MLEM.Data.Content.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data.Content
|
||
|
name: Content
|
||
|
href: MLEM.Data.Content.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.Data.Content.RawContentReader.CanRead*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentReader.CanRead
|
||
|
href: MLEM.Data.Content.RawContentReader.html#MLEM_Data_Content_RawContentReader_CanRead_System_Type_
|
||
|
name: CanRead
|
||
|
nameWithType: RawContentReader.CanRead
|
||
|
fullName: MLEM.Data.Content.RawContentReader.CanRead
|
||
|
- uid: System.Type
|
||
|
commentId: T:System.Type
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.type
|
||
|
name: Type
|
||
|
nameWithType: Type
|
||
|
fullName: System.Type
|
||
|
- 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: Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
commentId: P:Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
parent: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
isExternal: true
|
||
|
name: RootDirectory
|
||
|
nameWithType: ContentManager.RootDirectory
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager.RootDirectory
|
||
|
- uid: MLEM.Data.Content.RawContentReader.Read*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentReader.Read
|
||
|
href: MLEM.Data.Content.RawContentReader.html#MLEM_Data_Content_RawContentReader_Read_MLEM_Data_Content_RawContentManager_System_String_System_IO_Stream_System_Type_System_Object_
|
||
|
name: Read
|
||
|
nameWithType: RawContentReader.Read
|
||
|
fullName: MLEM.Data.Content.RawContentReader.Read
|
||
|
- 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.IO.Stream
|
||
|
commentId: T:System.IO.Stream
|
||
|
parent: System.IO
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.io.stream
|
||
|
name: Stream
|
||
|
nameWithType: Stream
|
||
|
fullName: System.IO.Stream
|
||
|
- uid: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
commentId: T:Microsoft.Xna.Framework.Content.ContentManager
|
||
|
parent: Microsoft.Xna.Framework.Content
|
||
|
isExternal: true
|
||
|
name: ContentManager
|
||
|
nameWithType: ContentManager
|
||
|
fullName: Microsoft.Xna.Framework.Content.ContentManager
|
||
|
- uid: System.IO
|
||
|
commentId: N:System.IO
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System.IO
|
||
|
nameWithType: System.IO
|
||
|
fullName: System.IO
|
||
|
spec.csharp:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.IO
|
||
|
name: IO
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.io
|
||
|
spec.vb:
|
||
|
- uid: System
|
||
|
name: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
- name: .
|
||
|
- uid: System.IO
|
||
|
name: IO
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.io
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
commentId: N:Microsoft.Xna.Framework.Content
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework.Content
|
||
|
nameWithType: Microsoft.Xna.Framework.Content
|
||
|
fullName: Microsoft.Xna.Framework.Content
|
||
|
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
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
name: Content
|
||
|
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
|
||
|
- name: .
|
||
|
- uid: Microsoft.Xna.Framework.Content
|
||
|
name: Content
|
||
|
isExternal: true
|
||
|
- uid: MLEM.Data.Content.RawContentReader.GetFileExtensions*
|
||
|
commentId: Overload:MLEM.Data.Content.RawContentReader.GetFileExtensions
|
||
|
href: MLEM.Data.Content.RawContentReader.html#MLEM_Data_Content_RawContentReader_GetFileExtensions
|
||
|
name: GetFileExtensions
|
||
|
nameWithType: RawContentReader.GetFileExtensions
|
||
|
fullName: MLEM.Data.Content.RawContentReader.GetFileExtensions
|
||
|
- uid: System.String[]
|
||
|
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()
|
||
|
spec.csharp:
|
||
|
- uid: System.String
|
||
|
name: string
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: '['
|
||
|
- name: ']'
|
||
|
spec.vb:
|
||
|
- uid: System.String
|
||
|
name: String
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.string
|
||
|
- name: (
|
||
|
- name: )
|