Files
Voile/Voile/api/Voile.Resources.TextDataResource.yml

500 lines
15 KiB
YAML

### YamlMime:ManagedReference
items:
- uid: Voile.Resources.TextDataResource
commentId: T:Voile.Resources.TextDataResource
id: TextDataResource
parent: Voile.Resources
children:
- Voile.Resources.TextDataResource.#ctor(System.String)
- Voile.Resources.TextDataResource.AddValue``1(System.String,``0)
- Voile.Resources.TextDataResource.GetValue``1(System.String,``0)
langs:
- csharp
- vb
name: TextDataResource
nameWithType: TextDataResource
fullName: Voile.Resources.TextDataResource
type: Class
source:
remote:
path: Voile/Source/Resources/TextDataResource.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: TextDataResource
path: Source/Resources/TextDataResource.cs
startLine: 2
assemblies:
- Voile
namespace: Voile.Resources
syntax:
content: 'public class TextDataResource : Resource, IDisposable'
content.vb: Public Class TextDataResource Inherits Resource Implements IDisposable
inheritance:
- System.Object
- Voile.Resource
implements:
- System.IDisposable
inheritedMembers:
- Voile.Resource.Path
- Voile.Resource.Dispose
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.MemberwiseClone
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
- uid: Voile.Resources.TextDataResource.#ctor(System.String)
commentId: M:Voile.Resources.TextDataResource.#ctor(System.String)
id: '#ctor(System.String)'
parent: Voile.Resources.TextDataResource
langs:
- csharp
- vb
name: TextDataResource(string)
nameWithType: TextDataResource.TextDataResource(string)
fullName: Voile.Resources.TextDataResource.TextDataResource(string)
type: Constructor
source:
remote:
path: Voile/Source/Resources/TextDataResource.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: .ctor
path: Source/Resources/TextDataResource.cs
startLine: 4
assemblies:
- Voile
namespace: Voile.Resources
syntax:
content: public TextDataResource(string path)
parameters:
- id: path
type: System.String
content.vb: Public Sub New(path As String)
overload: Voile.Resources.TextDataResource.#ctor*
nameWithType.vb: TextDataResource.New(String)
fullName.vb: Voile.Resources.TextDataResource.New(String)
name.vb: New(String)
- uid: Voile.Resources.TextDataResource.AddValue``1(System.String,``0)
commentId: M:Voile.Resources.TextDataResource.AddValue``1(System.String,``0)
id: AddValue``1(System.String,``0)
parent: Voile.Resources.TextDataResource
langs:
- csharp
- vb
name: AddValue<T>(string, T)
nameWithType: TextDataResource.AddValue<T>(string, T)
fullName: Voile.Resources.TextDataResource.AddValue<T>(string, T)
type: Method
source:
remote:
path: Voile/Source/Resources/TextDataResource.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: AddValue
path: Source/Resources/TextDataResource.cs
startLine: 8
assemblies:
- Voile
namespace: Voile.Resources
syntax:
content: 'public void AddValue<T>(string key, T value) where T : struct'
parameters:
- id: key
type: System.String
- id: value
type: '{T}'
typeParameters:
- id: T
content.vb: Public Sub AddValue(Of T As Structure)(key As String, value As T)
overload: Voile.Resources.TextDataResource.AddValue*
nameWithType.vb: TextDataResource.AddValue(Of T)(String, T)
fullName.vb: Voile.Resources.TextDataResource.AddValue(Of T)(String, T)
name.vb: AddValue(Of T)(String, T)
- uid: Voile.Resources.TextDataResource.GetValue``1(System.String,``0)
commentId: M:Voile.Resources.TextDataResource.GetValue``1(System.String,``0)
id: GetValue``1(System.String,``0)
parent: Voile.Resources.TextDataResource
langs:
- csharp
- vb
name: GetValue<T>(string, T)
nameWithType: TextDataResource.GetValue<T>(string, T)
fullName: Voile.Resources.TextDataResource.GetValue<T>(string, T)
type: Method
source:
remote:
path: Voile/Source/Resources/TextDataResource.cs
branch: main
repo: git@github.com:dnesov/DaggerFramework.git
id: GetValue
path: Source/Resources/TextDataResource.cs
startLine: 13
assemblies:
- Voile
namespace: Voile.Resources
syntax:
content: 'public void GetValue<T>(string key, T value) where T : struct'
parameters:
- id: key
type: System.String
- id: value
type: '{T}'
typeParameters:
- id: T
content.vb: Public Sub GetValue(Of T As Structure)(key As String, value As T)
overload: Voile.Resources.TextDataResource.GetValue*
nameWithType.vb: TextDataResource.GetValue(Of T)(String, T)
fullName.vb: Voile.Resources.TextDataResource.GetValue(Of T)(String, T)
name.vb: GetValue(Of T)(String, T)
references:
- uid: Voile.Resources
commentId: N:Voile.Resources
href: Voile.html
name: Voile.Resources
nameWithType: Voile.Resources
fullName: Voile.Resources
spec.csharp:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Resources
name: Resources
href: Voile.Resources.html
spec.vb:
- uid: Voile
name: Voile
href: Voile.html
- name: .
- uid: Voile.Resources
name: Resources
href: Voile.Resources.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: Voile.Resource
commentId: T:Voile.Resource
parent: Voile
href: Voile.Resource.html
name: Resource
nameWithType: Resource
fullName: Voile.Resource
- uid: System.IDisposable
commentId: T:System.IDisposable
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.idisposable
name: IDisposable
nameWithType: IDisposable
fullName: System.IDisposable
- uid: Voile.Resource.Path
commentId: P:Voile.Resource.Path
parent: Voile.Resource
href: Voile.Resource.html#Voile_Resource_Path
name: Path
nameWithType: Resource.Path
fullName: Voile.Resource.Path
- uid: Voile.Resource.Dispose
commentId: M:Voile.Resource.Dispose
parent: Voile.Resource
href: Voile.Resource.html#Voile_Resource_Dispose
name: Dispose()
nameWithType: Resource.Dispose()
fullName: Voile.Resource.Dispose()
spec.csharp:
- uid: Voile.Resource.Dispose
name: Dispose
href: Voile.Resource.html#Voile_Resource_Dispose
- name: (
- name: )
spec.vb:
- uid: Voile.Resource.Dispose
name: Dispose
href: Voile.Resource.html#Voile_Resource_Dispose
- 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.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.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.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
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: Voile
commentId: N:Voile
href: Voile.html
name: Voile
nameWithType: Voile
fullName: Voile
- uid: Voile.Resources.TextDataResource.#ctor*
commentId: Overload:Voile.Resources.TextDataResource.#ctor
href: Voile.Resources.TextDataResource.html#Voile_Resources_TextDataResource__ctor_System_String_
name: TextDataResource
nameWithType: TextDataResource.TextDataResource
fullName: Voile.Resources.TextDataResource.TextDataResource
nameWithType.vb: TextDataResource.New
fullName.vb: Voile.Resources.TextDataResource.New
name.vb: New
- 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: Voile.Resources.TextDataResource.AddValue*
commentId: Overload:Voile.Resources.TextDataResource.AddValue
href: Voile.Resources.TextDataResource.html#Voile_Resources_TextDataResource_AddValue__1_System_String___0_
name: AddValue
nameWithType: TextDataResource.AddValue
fullName: Voile.Resources.TextDataResource.AddValue
- uid: '{T}'
commentId: '!:T'
definition: T
name: T
nameWithType: T
fullName: T
- uid: T
name: T
nameWithType: T
fullName: T
- uid: Voile.Resources.TextDataResource.GetValue*
commentId: Overload:Voile.Resources.TextDataResource.GetValue
href: Voile.Resources.TextDataResource.html#Voile_Resources_TextDataResource_GetValue__1_System_String___0_
name: GetValue
nameWithType: TextDataResource.GetValue
fullName: Voile.Resources.TextDataResource.GetValue