mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-14 10:09:09 +01:00
1206 lines
51 KiB
YAML
1206 lines
51 KiB
YAML
|
### YamlMime:ManagedReference
|
||
|
items:
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
commentId: T:MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
id: GraphicsExtensions.TargetContext
|
||
|
parent: MLEM.Extensions
|
||
|
children:
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTargetBinding[])
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: GraphicsExtensions.TargetContext
|
||
|
nameWithType: GraphicsExtensions.TargetContext
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
type: Struct
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Extensions/GraphicsExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: TargetContext
|
||
|
path: ../MLEM/Extensions/GraphicsExtensions.cs
|
||
|
startLine: 91
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Extensions
|
||
|
summary: >-
|
||
|
Represents a context in which a <xref href="Microsoft.Xna.Framework.Graphics.RenderTarget2D" data-throw-if-not-resolved="false"></xref> is applied.
|
||
|
|
||
|
This class should be used with <xref href="MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice%2cMicrosoft.Xna.Framework.Graphics.RenderTarget2D)" data-throw-if-not-resolved="false"></xref>.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: 'public readonly struct GraphicsExtensions.TargetContext : IDisposable'
|
||
|
content.vb: Public Structure GraphicsExtensions.TargetContext Implements IDisposable
|
||
|
implements:
|
||
|
- System.IDisposable
|
||
|
inheritedMembers:
|
||
|
- System.ValueType.Equals(System.Object)
|
||
|
- System.ValueType.GetHashCode
|
||
|
- System.ValueType.ToString
|
||
|
- System.Object.Equals(System.Object,System.Object)
|
||
|
- System.Object.ReferenceEquals(System.Object,System.Object)
|
||
|
- System.Object.GetType
|
||
|
extensionMethods:
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.CopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.Copy``1(System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.DeepCopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
- MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.DeepCopy``1(System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
commentId: M:MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
id: '#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)'
|
||
|
parent: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: TargetContext(GraphicsDevice, RenderTarget2D)
|
||
|
nameWithType: GraphicsExtensions.TargetContext.TargetContext(GraphicsDevice, RenderTarget2D)
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext.TargetContext(Microsoft.Xna.Framework.Graphics.GraphicsDevice, Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
type: Constructor
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Extensions/GraphicsExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: .ctor
|
||
|
path: ../MLEM/Extensions/GraphicsExtensions.cs
|
||
|
startLine: 101
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Extensions
|
||
|
summary: Creates a new target context with the given settings.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public TargetContext(GraphicsDevice device, RenderTarget2D target)
|
||
|
parameters:
|
||
|
- id: device
|
||
|
type: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
description: The graphics device to apply the target on
|
||
|
- id: target
|
||
|
type: Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
description: The target to apply
|
||
|
content.vb: Public Sub New(device As GraphicsDevice, target As RenderTarget2D)
|
||
|
overload: MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor*
|
||
|
nameWithType.vb: GraphicsExtensions.TargetContext.New(GraphicsDevice, RenderTarget2D)
|
||
|
fullName.vb: MLEM.Extensions.GraphicsExtensions.TargetContext.New(Microsoft.Xna.Framework.Graphics.GraphicsDevice, Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
name.vb: New(GraphicsDevice, RenderTarget2D)
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTargetBinding[])
|
||
|
commentId: M:MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTargetBinding[])
|
||
|
id: '#ctor(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTargetBinding[])'
|
||
|
parent: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: TargetContext(GraphicsDevice, RenderTargetBinding[])
|
||
|
nameWithType: GraphicsExtensions.TargetContext.TargetContext(GraphicsDevice, RenderTargetBinding[])
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext.TargetContext(Microsoft.Xna.Framework.Graphics.GraphicsDevice, Microsoft.Xna.Framework.Graphics.RenderTargetBinding[])
|
||
|
type: Constructor
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Extensions/GraphicsExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: .ctor
|
||
|
path: ../MLEM/Extensions/GraphicsExtensions.cs
|
||
|
startLine: 110
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Extensions
|
||
|
summary: Creates a new target context with the given settings.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public TargetContext(GraphicsDevice device, RenderTargetBinding[] targets)
|
||
|
parameters:
|
||
|
- id: device
|
||
|
type: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
description: The graphics device to apply the target on
|
||
|
- id: targets
|
||
|
type: Microsoft.Xna.Framework.Graphics.RenderTargetBinding[]
|
||
|
description: The targets to apply
|
||
|
content.vb: Public Sub New(device As GraphicsDevice, targets As RenderTargetBinding())
|
||
|
overload: MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor*
|
||
|
nameWithType.vb: GraphicsExtensions.TargetContext.New(GraphicsDevice, RenderTargetBinding())
|
||
|
fullName.vb: MLEM.Extensions.GraphicsExtensions.TargetContext.New(Microsoft.Xna.Framework.Graphics.GraphicsDevice, Microsoft.Xna.Framework.Graphics.RenderTargetBinding())
|
||
|
name.vb: New(GraphicsDevice, RenderTargetBinding())
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose
|
||
|
commentId: M:MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose
|
||
|
id: Dispose
|
||
|
parent: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
langs:
|
||
|
- csharp
|
||
|
- vb
|
||
|
name: Dispose()
|
||
|
nameWithType: GraphicsExtensions.TargetContext.Dispose()
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose()
|
||
|
type: Method
|
||
|
source:
|
||
|
remote:
|
||
|
path: MLEM/Extensions/GraphicsExtensions.cs
|
||
|
branch: main
|
||
|
repo: https://github.com/Ellpeck/MLEM
|
||
|
id: Dispose
|
||
|
path: ../MLEM/Extensions/GraphicsExtensions.cs
|
||
|
startLine: 127
|
||
|
assemblies:
|
||
|
- MLEM
|
||
|
namespace: MLEM.Extensions
|
||
|
summary: Disposes this target context, which causes the graphics device's previous render targets to be re-applied.
|
||
|
example: []
|
||
|
syntax:
|
||
|
content: public void Dispose()
|
||
|
content.vb: Public Sub Dispose()
|
||
|
overload: MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose*
|
||
|
implements:
|
||
|
- System.IDisposable.Dispose
|
||
|
references:
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
commentId: T:Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
parent: Microsoft.Xna.Framework.Graphics
|
||
|
isExternal: true
|
||
|
name: RenderTarget2D
|
||
|
nameWithType: RenderTarget2D
|
||
|
fullName: Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
commentId: M:MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
isExternal: true
|
||
|
href: MLEM.Extensions.GraphicsExtensions.html#MLEM_Extensions_GraphicsExtensions_WithRenderTarget_Microsoft_Xna_Framework_Graphics_GraphicsDevice_Microsoft_Xna_Framework_Graphics_RenderTarget2D_
|
||
|
name: WithRenderTarget(GraphicsDevice, RenderTarget2D)
|
||
|
nameWithType: GraphicsExtensions.WithRenderTarget(GraphicsDevice, RenderTarget2D)
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice, Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
name: WithRenderTarget
|
||
|
href: MLEM.Extensions.GraphicsExtensions.html#MLEM_Extensions_GraphicsExtensions_WithRenderTarget_Microsoft_Xna_Framework_Graphics_GraphicsDevice_Microsoft_Xna_Framework_Graphics_RenderTarget2D_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
name: GraphicsDevice
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
name: RenderTarget2D
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.WithRenderTarget(Microsoft.Xna.Framework.Graphics.GraphicsDevice,Microsoft.Xna.Framework.Graphics.RenderTarget2D)
|
||
|
name: WithRenderTarget
|
||
|
href: MLEM.Extensions.GraphicsExtensions.html#MLEM_Extensions_GraphicsExtensions_WithRenderTarget_Microsoft_Xna_Framework_Graphics_GraphicsDevice_Microsoft_Xna_Framework_Graphics_RenderTarget2D_
|
||
|
- name: (
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
name: GraphicsDevice
|
||
|
isExternal: true
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTarget2D
|
||
|
name: RenderTarget2D
|
||
|
isExternal: true
|
||
|
- name: )
|
||
|
- uid: MLEM.Extensions
|
||
|
commentId: N:MLEM.Extensions
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Extensions
|
||
|
nameWithType: MLEM.Extensions
|
||
|
fullName: MLEM.Extensions
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Extensions
|
||
|
name: Extensions
|
||
|
href: MLEM.Extensions.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Extensions
|
||
|
name: Extensions
|
||
|
href: MLEM.Extensions.html
|
||
|
- 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: System.ValueType.Equals(System.Object)
|
||
|
commentId: M:System.ValueType.Equals(System.Object)
|
||
|
parent: System.ValueType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
||
|
name: Equals(object)
|
||
|
nameWithType: ValueType.Equals(object)
|
||
|
fullName: System.ValueType.Equals(object)
|
||
|
nameWithType.vb: ValueType.Equals(Object)
|
||
|
fullName.vb: System.ValueType.Equals(Object)
|
||
|
name.vb: Equals(Object)
|
||
|
spec.csharp:
|
||
|
- uid: System.ValueType.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.ValueType.Equals(System.Object)
|
||
|
name: Equals
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.equals
|
||
|
- name: (
|
||
|
- uid: System.Object
|
||
|
name: Object
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.object
|
||
|
- name: )
|
||
|
- uid: System.ValueType.GetHashCode
|
||
|
commentId: M:System.ValueType.GetHashCode
|
||
|
parent: System.ValueType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
||
|
name: GetHashCode()
|
||
|
nameWithType: ValueType.GetHashCode()
|
||
|
fullName: System.ValueType.GetHashCode()
|
||
|
spec.csharp:
|
||
|
- uid: System.ValueType.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.ValueType.GetHashCode
|
||
|
name: GetHashCode
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.gethashcode
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: System.ValueType.ToString
|
||
|
commentId: M:System.ValueType.ToString
|
||
|
parent: System.ValueType
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
||
|
name: ToString()
|
||
|
nameWithType: ValueType.ToString()
|
||
|
fullName: System.ValueType.ToString()
|
||
|
spec.csharp:
|
||
|
- uid: System.ValueType.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.ValueType.ToString
|
||
|
name: ToString
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype.tostring
|
||
|
- name: (
|
||
|
- 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.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: MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.CopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
parent: MLEM.Data.CopyExtensions
|
||
|
definition: MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: CopyInto<TargetContext>(TargetContext, TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.CopyInto<GraphicsExtensions.TargetContext>(GraphicsExtensions.TargetContext, GraphicsExtensions.TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.CopyInto<MLEM.Extensions.GraphicsExtensions.TargetContext>(MLEM.Extensions.GraphicsExtensions.TargetContext, MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.CopyInto(Of GraphicsExtensions.TargetContext)(GraphicsExtensions.TargetContext, GraphicsExtensions.TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.CopyInto(Of MLEM.Extensions.GraphicsExtensions.TargetContext)(MLEM.Extensions.GraphicsExtensions.TargetContext, MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: CopyInto(Of TargetContext)(TargetContext, TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.CopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: CopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.CopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: CopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.Copy``1(System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
parent: MLEM.Data.CopyExtensions
|
||
|
definition: MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: Copy<TargetContext>(TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.Copy<GraphicsExtensions.TargetContext>(GraphicsExtensions.TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.Copy<MLEM.Extensions.GraphicsExtensions.TargetContext>(MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.Copy(Of GraphicsExtensions.TargetContext)(GraphicsExtensions.TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.Copy(Of MLEM.Extensions.GraphicsExtensions.TargetContext)(MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: Copy(Of TargetContext)(TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.Copy``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: Copy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.Copy``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: Copy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.DeepCopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
parent: MLEM.Data.CopyExtensions
|
||
|
definition: MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: DeepCopyInto<TargetContext>(TargetContext, TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.DeepCopyInto<GraphicsExtensions.TargetContext>(GraphicsExtensions.TargetContext, GraphicsExtensions.TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.DeepCopyInto<MLEM.Extensions.GraphicsExtensions.TargetContext>(MLEM.Extensions.GraphicsExtensions.TargetContext, MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.DeepCopyInto(Of GraphicsExtensions.TargetContext)(GraphicsExtensions.TargetContext, GraphicsExtensions.TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.DeepCopyInto(Of MLEM.Extensions.GraphicsExtensions.TargetContext)(MLEM.Extensions.GraphicsExtensions.TargetContext, MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: DeepCopyInto(Of TargetContext)(TargetContext, TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopyInto``1(MLEM.Extensions.GraphicsExtensions.TargetContext,MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.MLEM.Data.CopyExtensions.DeepCopy``1(System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
parent: MLEM.Data.CopyExtensions
|
||
|
definition: MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: DeepCopy<TargetContext>(TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.DeepCopy<GraphicsExtensions.TargetContext>(GraphicsExtensions.TargetContext, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.DeepCopy<MLEM.Extensions.GraphicsExtensions.TargetContext>(MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.DeepCopy(Of GraphicsExtensions.TargetContext)(GraphicsExtensions.TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.DeepCopy(Of MLEM.Extensions.GraphicsExtensions.TargetContext)(MLEM.Extensions.GraphicsExtensions.TargetContext, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: DeepCopy(Of TargetContext)(TargetContext, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopy``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopy``1(MLEM.Extensions.GraphicsExtensions.TargetContext,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext
|
||
|
name: TargetContext
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: Microsoft.Xna.Framework.Graphics
|
||
|
commentId: N:Microsoft.Xna.Framework.Graphics
|
||
|
isExternal: true
|
||
|
name: Microsoft.Xna.Framework.Graphics
|
||
|
nameWithType: Microsoft.Xna.Framework.Graphics
|
||
|
fullName: Microsoft.Xna.Framework.Graphics
|
||
|
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.Graphics
|
||
|
name: Graphics
|
||
|
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.Graphics
|
||
|
name: Graphics
|
||
|
isExternal: true
|
||
|
- uid: System
|
||
|
commentId: N:System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system
|
||
|
name: System
|
||
|
nameWithType: System
|
||
|
fullName: System
|
||
|
- uid: System.ValueType
|
||
|
commentId: T:System.ValueType
|
||
|
parent: System
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.valuetype
|
||
|
name: ValueType
|
||
|
nameWithType: ValueType
|
||
|
fullName: System.ValueType
|
||
|
- 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: MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: CopyInto<T>(T, T, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.CopyInto<T>(T, T, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.CopyInto<T>(T, T, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.CopyInto(Of T)(T, T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.CopyInto(Of T)(T, T, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: CopyInto(Of T)(T, T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: CopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.CopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: CopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_CopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.CopyExtensions
|
||
|
commentId: T:MLEM.Data.CopyExtensions
|
||
|
parent: MLEM.Data
|
||
|
href: MLEM.Data.CopyExtensions.html
|
||
|
name: CopyExtensions
|
||
|
nameWithType: CopyExtensions
|
||
|
fullName: MLEM.Data.CopyExtensions
|
||
|
- uid: MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: Copy<T>(T, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.Copy<T>(T, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.Copy<T>(T, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.Copy(Of T)(T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.Copy(Of T)(T, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: Copy(Of T)(T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: Copy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.Copy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: Copy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_Copy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: DeepCopyInto<T>(T, T, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.DeepCopyInto<T>(T, T, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.DeepCopyInto<T>(T, T, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.DeepCopyInto(Of T)(T, T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.DeepCopyInto(Of T)(T, T, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: DeepCopyInto(Of T)(T, T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopyInto``1(``0,``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopyInto
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopyInto__1___0___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
commentId: M:MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
isExternal: true
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
name: DeepCopy<T>(T, BindingFlags, Predicate<FieldInfo>)
|
||
|
nameWithType: CopyExtensions.DeepCopy<T>(T, BindingFlags, Predicate<FieldInfo>)
|
||
|
fullName: MLEM.Data.CopyExtensions.DeepCopy<T>(T, System.Reflection.BindingFlags, System.Predicate<System.Reflection.FieldInfo>)
|
||
|
nameWithType.vb: CopyExtensions.DeepCopy(Of T)(T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
fullName.vb: MLEM.Data.CopyExtensions.DeepCopy(Of T)(T, System.Reflection.BindingFlags, System.Predicate(Of System.Reflection.FieldInfo))
|
||
|
name.vb: DeepCopy(Of T)(T, BindingFlags, Predicate(Of FieldInfo))
|
||
|
spec.csharp:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: <
|
||
|
- name: T
|
||
|
- name: '>'
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: <
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: '>'
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: MLEM.Data.CopyExtensions.DeepCopy``1(``0,System.Reflection.BindingFlags,System.Predicate{System.Reflection.FieldInfo})
|
||
|
name: DeepCopy
|
||
|
href: MLEM.Data.CopyExtensions.html#MLEM_Data_CopyExtensions_DeepCopy__1___0_System_Reflection_BindingFlags_System_Predicate_System_Reflection_FieldInfo__
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- name: T
|
||
|
- name: )
|
||
|
- name: (
|
||
|
- name: T
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.BindingFlags
|
||
|
name: BindingFlags
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.bindingflags
|
||
|
- name: ','
|
||
|
- name: " "
|
||
|
- uid: System.Predicate`1
|
||
|
name: Predicate
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.predicate-1
|
||
|
- name: (
|
||
|
- name: Of
|
||
|
- name: " "
|
||
|
- uid: System.Reflection.FieldInfo
|
||
|
name: FieldInfo
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.reflection.fieldinfo
|
||
|
- name: )
|
||
|
- name: )
|
||
|
- uid: MLEM.Data
|
||
|
commentId: N:MLEM.Data
|
||
|
href: MLEM.html
|
||
|
name: MLEM.Data
|
||
|
nameWithType: MLEM.Data
|
||
|
fullName: MLEM.Data
|
||
|
spec.csharp:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
spec.vb:
|
||
|
- uid: MLEM
|
||
|
name: MLEM
|
||
|
href: MLEM.html
|
||
|
- name: .
|
||
|
- uid: MLEM.Data
|
||
|
name: Data
|
||
|
href: MLEM.Data.html
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor*
|
||
|
commentId: Overload:MLEM.Extensions.GraphicsExtensions.TargetContext.#ctor
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html#MLEM_Extensions_GraphicsExtensions_TargetContext__ctor_Microsoft_Xna_Framework_Graphics_GraphicsDevice_Microsoft_Xna_Framework_Graphics_RenderTarget2D_
|
||
|
name: TargetContext
|
||
|
nameWithType: GraphicsExtensions.TargetContext.TargetContext
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext.TargetContext
|
||
|
nameWithType.vb: GraphicsExtensions.TargetContext.New
|
||
|
fullName.vb: MLEM.Extensions.GraphicsExtensions.TargetContext.New
|
||
|
name.vb: New
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
commentId: T:Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
parent: Microsoft.Xna.Framework.Graphics
|
||
|
isExternal: true
|
||
|
name: GraphicsDevice
|
||
|
nameWithType: GraphicsDevice
|
||
|
fullName: Microsoft.Xna.Framework.Graphics.GraphicsDevice
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTargetBinding[]
|
||
|
isExternal: true
|
||
|
name: RenderTargetBinding[]
|
||
|
nameWithType: RenderTargetBinding[]
|
||
|
fullName: Microsoft.Xna.Framework.Graphics.RenderTargetBinding[]
|
||
|
nameWithType.vb: RenderTargetBinding()
|
||
|
fullName.vb: Microsoft.Xna.Framework.Graphics.RenderTargetBinding()
|
||
|
name.vb: RenderTargetBinding()
|
||
|
spec.csharp:
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTargetBinding
|
||
|
name: RenderTargetBinding
|
||
|
isExternal: true
|
||
|
- name: '['
|
||
|
- name: ']'
|
||
|
spec.vb:
|
||
|
- uid: Microsoft.Xna.Framework.Graphics.RenderTargetBinding
|
||
|
name: RenderTargetBinding
|
||
|
isExternal: true
|
||
|
- name: (
|
||
|
- name: )
|
||
|
- uid: MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose*
|
||
|
commentId: Overload:MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose
|
||
|
href: MLEM.Extensions.GraphicsExtensions.TargetContext.html#MLEM_Extensions_GraphicsExtensions_TargetContext_Dispose
|
||
|
name: Dispose
|
||
|
nameWithType: GraphicsExtensions.TargetContext.Dispose
|
||
|
fullName: MLEM.Extensions.GraphicsExtensions.TargetContext.Dispose
|
||
|
- uid: System.IDisposable.Dispose
|
||
|
commentId: M:System.IDisposable.Dispose
|
||
|
parent: System.IDisposable
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||
|
name: Dispose()
|
||
|
nameWithType: IDisposable.Dispose()
|
||
|
fullName: System.IDisposable.Dispose()
|
||
|
spec.csharp:
|
||
|
- uid: System.IDisposable.Dispose
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||
|
- name: (
|
||
|
- name: )
|
||
|
spec.vb:
|
||
|
- uid: System.IDisposable.Dispose
|
||
|
name: Dispose
|
||
|
isExternal: true
|
||
|
href: https://learn.microsoft.com/dotnet/api/system.idisposable.dispose
|
||
|
- name: (
|
||
|
- name: )
|