### YamlMime:ManagedReference items: - uid: Microsoft.ML.OnnxRuntime.OrtValue commentId: T:Microsoft.ML.OnnxRuntime.OrtValue id: OrtValue parent: Microsoft.ML.OnnxRuntime children: - Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject(System.Object,System.Nullable{System.Buffers.MemoryHandle}@,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType@) - Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType,System.Int64[],System.IntPtr,System.Int64) - Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid - Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle langs: - csharp - vb name: OrtValue nameWithType: OrtValue fullName: Microsoft.ML.OnnxRuntime.OrtValue type: Class source: remote: path: csharp/src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs branch: csharp-docs repo: https://github.com/cassiebreviu/onnxruntime.git id: OrtValue path: ../src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs startLine: 30 assemblies: - Microsoft.ML.OnnxRuntime namespace: Microsoft.ML.OnnxRuntime summary: "\nRepresents a disposable OrtValue.\nThis class exposes a native instance of OrtValue.\nThe class implements IDisposable via SafeHandle and must\nbe disposed.\n" example: [] syntax: content: 'public class OrtValue : SafeHandle, IDisposable' content.vb: >- Public Class OrtValue Inherits SafeHandle Implements IDisposable inheritance: - System.Object - System.Runtime.InteropServices.SafeHandle implements: - System.IDisposable inheritedMembers: - System.Runtime.InteropServices.SafeHandle.handle - System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@) - System.Runtime.InteropServices.SafeHandle.DangerousGetHandle - System.Runtime.InteropServices.SafeHandle.DangerousRelease - System.Runtime.InteropServices.SafeHandle.Dispose - System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) - System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) - System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid - System.Runtime.InteropServices.SafeHandle.IsClosed - 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 modifiers.csharp: - public - class modifiers.vb: - Public - Class - uid: Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid commentId: P:Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid id: IsInvalid parent: Microsoft.ML.OnnxRuntime.OrtValue langs: - csharp - vb name: IsInvalid nameWithType: OrtValue.IsInvalid fullName: Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid type: Property source: remote: path: csharp/src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs branch: csharp-docs repo: https://github.com/cassiebreviu/onnxruntime.git id: IsInvalid path: ../src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs startLine: 51 assemblies: - Microsoft.ML.OnnxRuntime namespace: Microsoft.ML.OnnxRuntime summary: "\nOverrides SafeHandle.IsInvalid\n" example: [] syntax: content: public override bool IsInvalid { get; } parameters: [] return: type: System.Boolean description: returns true if handle is equal to Zero content.vb: Public Overrides ReadOnly Property IsInvalid As Boolean overridden: System.Runtime.InteropServices.SafeHandle.IsInvalid overload: Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid* modifiers.csharp: - public - override - get modifiers.vb: - Public - Overrides - ReadOnly - uid: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType,System.Int64[],System.IntPtr,System.Int64) commentId: M:Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType,System.Int64[],System.IntPtr,System.Int64) id: CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType,System.Int64[],System.IntPtr,System.Int64) parent: Microsoft.ML.OnnxRuntime.OrtValue langs: - csharp - vb name: CreateTensorValueWithData(OrtMemoryInfo, TensorElementType, Int64[], IntPtr, Int64) nameWithType: OrtValue.CreateTensorValueWithData(OrtMemoryInfo, TensorElementType, Int64[], IntPtr, Int64) fullName: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo, Microsoft.ML.OnnxRuntime.Tensors.TensorElementType, System.Int64[], System.IntPtr, System.Int64) type: Method source: remote: path: csharp/src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs branch: csharp-docs repo: https://github.com/cassiebreviu/onnxruntime.git id: CreateTensorValueWithData path: ../src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs startLine: 89 assemblies: - Microsoft.ML.OnnxRuntime namespace: Microsoft.ML.OnnxRuntime summary: "\nFactory method to construct an OrtValue of Tensor type on top of pre-allocated memory.\nThis can be a piece of native memory allocated by OrtAllocator (possibly on a device)\nor a piece of pinned managed memory.\n\nThe resulting OrtValue does not own the underlying memory buffer and will not attempt to\ndeallocate it.\n" example: [] syntax: content: public static OrtValue CreateTensorValueWithData(OrtMemoryInfo memInfo, TensorElementType elementType, long[] shape, IntPtr dataBuffer, long bufferLength) parameters: - id: memInfo type: Microsoft.ML.OnnxRuntime.OrtMemoryInfo description: >- Memory Info. For managed memory it is a default cpu. For Native memory must be obtained from the allocator or OrtMemoryAllocation instance - id: elementType type: Microsoft.ML.OnnxRuntime.Tensors.TensorElementType description: DataType for the Tensor - id: shape type: System.Int64[] description: Tensor shape - id: dataBuffer type: System.IntPtr description: Pointer to a raw memory buffer - id: bufferLength type: System.Int64 description: Buffer length in bytes return: type: Microsoft.ML.OnnxRuntime.OrtValue description: A disposable instance of OrtValue content.vb: Public Shared Function CreateTensorValueWithData(memInfo As OrtMemoryInfo, elementType As TensorElementType, shape As Long(), dataBuffer As IntPtr, bufferLength As Long) As OrtValue overload: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData* nameWithType.vb: OrtValue.CreateTensorValueWithData(OrtMemoryInfo, TensorElementType, Int64(), IntPtr, Int64) modifiers.csharp: - public - static modifiers.vb: - Public - Shared fullName.vb: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData(Microsoft.ML.OnnxRuntime.OrtMemoryInfo, Microsoft.ML.OnnxRuntime.Tensors.TensorElementType, System.Int64(), System.IntPtr, System.Int64) name.vb: CreateTensorValueWithData(OrtMemoryInfo, TensorElementType, Int64(), IntPtr, Int64) - uid: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject(System.Object,System.Nullable{System.Buffers.MemoryHandle}@,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType@) commentId: M:Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject(System.Object,System.Nullable{System.Buffers.MemoryHandle}@,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType@) id: CreateFromTensorObject(System.Object,System.Nullable{System.Buffers.MemoryHandle}@,Microsoft.ML.OnnxRuntime.Tensors.TensorElementType@) parent: Microsoft.ML.OnnxRuntime.OrtValue langs: - csharp - vb name: CreateFromTensorObject(Object, out Nullable, out TensorElementType) nameWithType: OrtValue.CreateFromTensorObject(Object, out Nullable, out TensorElementType) fullName: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject(System.Object, out System.Nullable, out Microsoft.ML.OnnxRuntime.Tensors.TensorElementType) type: Method source: remote: path: csharp/src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs branch: csharp-docs repo: https://github.com/cassiebreviu/onnxruntime.git id: CreateFromTensorObject path: ../src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs startLine: 143 assemblies: - Microsoft.ML.OnnxRuntime namespace: Microsoft.ML.OnnxRuntime summary: "\nThis is a factory method creates a native Onnxruntime OrtValue containing a tensor.\nThe method will attempt to pin managed memory so no copying occurs when data is passed down\nto native code.\n" example: [] syntax: content: public static OrtValue CreateFromTensorObject(object value, out MemoryHandle? memoryHandle, out TensorElementType elementType) parameters: - id: value type: System.Object description: Tensor object - id: memoryHandle type: System.Nullable{System.Buffers.MemoryHandle} description: > For all tensor types but string tensors we endeavor to use managed memory to avoid additional allocation and copy. This out parameter represents a chunk of pinned memory which will need to be disposed when no longer needed. The lifespan of memoryHandle should eclipse the lifespan of the corresponding OrtValue. - id: elementType type: Microsoft.ML.OnnxRuntime.Tensors.TensorElementType description: discovered tensor element type return: type: Microsoft.ML.OnnxRuntime.OrtValue description: And instance of OrtValue constructed on top of the object content.vb: Public Shared Function CreateFromTensorObject(value As Object, ByRef memoryHandle As MemoryHandle?, ByRef elementType As TensorElementType) As OrtValue overload: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject* nameWithType.vb: OrtValue.CreateFromTensorObject(Object, ByRef Nullable(Of MemoryHandle), ByRef TensorElementType) modifiers.csharp: - public - static modifiers.vb: - Public - Shared fullName.vb: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject(System.Object, ByRef System.Nullable(Of System.Buffers.MemoryHandle), ByRef Microsoft.ML.OnnxRuntime.Tensors.TensorElementType) name.vb: CreateFromTensorObject(Object, ByRef Nullable(Of MemoryHandle), ByRef TensorElementType) - uid: Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle commentId: M:Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle id: ReleaseHandle parent: Microsoft.ML.OnnxRuntime.OrtValue langs: - csharp - vb name: ReleaseHandle() nameWithType: OrtValue.ReleaseHandle() fullName: Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle() type: Method source: remote: path: csharp/src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs branch: csharp-docs repo: https://github.com/cassiebreviu/onnxruntime.git id: ReleaseHandle path: ../src/Microsoft.ML.OnnxRuntime/OrtValue.shared.cs startLine: 375 assemblies: - Microsoft.ML.OnnxRuntime namespace: Microsoft.ML.OnnxRuntime summary: "\nOverrides SafeHandle.ReleaseHandle() to properly dispose of\nthe native instance of OrtValue\n" example: [] syntax: content: protected override bool ReleaseHandle() return: type: System.Boolean description: always returns true content.vb: Protected Overrides Function ReleaseHandle As Boolean overridden: System.Runtime.InteropServices.SafeHandle.ReleaseHandle overload: Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle* modifiers.csharp: - protected - override modifiers.vb: - Protected - Overrides references: - uid: Microsoft.ML.OnnxRuntime commentId: N:Microsoft.ML.OnnxRuntime name: Microsoft.ML.OnnxRuntime nameWithType: Microsoft.ML.OnnxRuntime fullName: Microsoft.ML.OnnxRuntime - uid: System.Object commentId: T:System.Object parent: System isExternal: true name: Object nameWithType: Object fullName: System.Object - uid: System.Runtime.InteropServices.SafeHandle commentId: T:System.Runtime.InteropServices.SafeHandle parent: System.Runtime.InteropServices isExternal: true name: SafeHandle nameWithType: SafeHandle fullName: System.Runtime.InteropServices.SafeHandle - uid: System.IDisposable commentId: T:System.IDisposable parent: System isExternal: true name: IDisposable nameWithType: IDisposable fullName: System.IDisposable - uid: System.Runtime.InteropServices.SafeHandle.handle commentId: F:System.Runtime.InteropServices.SafeHandle.handle parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: handle nameWithType: SafeHandle.handle fullName: System.Runtime.InteropServices.SafeHandle.handle - uid: System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@) commentId: M:System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@) parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: DangerousAddRef(Boolean) nameWithType: SafeHandle.DangerousAddRef(Boolean) fullName: System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean) spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@) name: DangerousAddRef nameWithType: SafeHandle.DangerousAddRef fullName: System.Runtime.InteropServices.SafeHandle.DangerousAddRef isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Boolean name: Boolean nameWithType: Boolean fullName: System.Boolean isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.DangerousAddRef(System.Boolean@) name: DangerousAddRef nameWithType: SafeHandle.DangerousAddRef fullName: System.Runtime.InteropServices.SafeHandle.DangerousAddRef isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Boolean name: Boolean nameWithType: Boolean fullName: System.Boolean isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle commentId: M:System.Runtime.InteropServices.SafeHandle.DangerousGetHandle parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: DangerousGetHandle() nameWithType: SafeHandle.DangerousGetHandle() fullName: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle() spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle name: DangerousGetHandle nameWithType: SafeHandle.DangerousGetHandle fullName: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle name: DangerousGetHandle nameWithType: SafeHandle.DangerousGetHandle fullName: System.Runtime.InteropServices.SafeHandle.DangerousGetHandle isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.DangerousRelease commentId: M:System.Runtime.InteropServices.SafeHandle.DangerousRelease parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: DangerousRelease() nameWithType: SafeHandle.DangerousRelease() fullName: System.Runtime.InteropServices.SafeHandle.DangerousRelease() spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.DangerousRelease name: DangerousRelease nameWithType: SafeHandle.DangerousRelease fullName: System.Runtime.InteropServices.SafeHandle.DangerousRelease isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.DangerousRelease name: DangerousRelease nameWithType: SafeHandle.DangerousRelease fullName: System.Runtime.InteropServices.SafeHandle.DangerousRelease isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.Dispose commentId: M:System.Runtime.InteropServices.SafeHandle.Dispose parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: Dispose() nameWithType: SafeHandle.Dispose() fullName: System.Runtime.InteropServices.SafeHandle.Dispose() spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.Dispose name: Dispose nameWithType: SafeHandle.Dispose fullName: System.Runtime.InteropServices.SafeHandle.Dispose isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.Dispose name: Dispose nameWithType: SafeHandle.Dispose fullName: System.Runtime.InteropServices.SafeHandle.Dispose isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) commentId: M:System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: Dispose(Boolean) nameWithType: SafeHandle.Dispose(Boolean) fullName: System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) name: Dispose nameWithType: SafeHandle.Dispose fullName: System.Runtime.InteropServices.SafeHandle.Dispose isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Boolean name: Boolean nameWithType: Boolean fullName: System.Boolean isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.Dispose(System.Boolean) name: Dispose nameWithType: SafeHandle.Dispose fullName: System.Runtime.InteropServices.SafeHandle.Dispose isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Boolean name: Boolean nameWithType: Boolean fullName: System.Boolean isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) commentId: M:System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: SetHandle(IntPtr) nameWithType: SafeHandle.SetHandle(IntPtr) fullName: System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) name: SetHandle nameWithType: SafeHandle.SetHandle fullName: System.Runtime.InteropServices.SafeHandle.SetHandle isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.IntPtr name: IntPtr nameWithType: IntPtr fullName: System.IntPtr isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.SetHandle(System.IntPtr) name: SetHandle nameWithType: SafeHandle.SetHandle fullName: System.Runtime.InteropServices.SafeHandle.SetHandle isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.IntPtr name: IntPtr nameWithType: IntPtr fullName: System.IntPtr isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid commentId: M:System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: SetHandleAsInvalid() nameWithType: SafeHandle.SetHandleAsInvalid() fullName: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid() spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid name: SetHandleAsInvalid nameWithType: SafeHandle.SetHandleAsInvalid fullName: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid name: SetHandleAsInvalid nameWithType: SafeHandle.SetHandleAsInvalid fullName: System.Runtime.InteropServices.SafeHandle.SetHandleAsInvalid isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.IsClosed commentId: P:System.Runtime.InteropServices.SafeHandle.IsClosed parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: IsClosed nameWithType: SafeHandle.IsClosed fullName: System.Runtime.InteropServices.SafeHandle.IsClosed - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true name: Equals(Object) nameWithType: Object.Equals(Object) fullName: System.Object.Equals(System.Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true name: Equals(Object, Object) nameWithType: Object.Equals(Object, Object) fullName: System.Object.Equals(System.Object, System.Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals nameWithType: Object.Equals fullName: System.Object.Equals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true name: GetHashCode() nameWithType: Object.GetHashCode() fullName: System.Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode nameWithType: Object.GetHashCode fullName: System.Object.GetHashCode isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true name: GetType() nameWithType: Object.GetType() fullName: System.Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.GetType name: GetType nameWithType: Object.GetType fullName: System.Object.GetType isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true name: MemberwiseClone() nameWithType: Object.MemberwiseClone() fullName: System.Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone nameWithType: Object.MemberwiseClone fullName: System.Object.MemberwiseClone isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true name: ReferenceEquals(Object, Object) nameWithType: Object.ReferenceEquals(Object, Object) fullName: System.Object.ReferenceEquals(System.Object, System.Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals nameWithType: Object.ReferenceEquals fullName: System.Object.ReferenceEquals isExternal: true - name: ( nameWithType: ( fullName: ( - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ', ' nameWithType: ', ' fullName: ', ' - uid: System.Object name: Object nameWithType: Object fullName: System.Object isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true name: ToString() nameWithType: Object.ToString() fullName: System.Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Object.ToString name: ToString nameWithType: Object.ToString fullName: System.Object.ToString isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: System commentId: N:System isExternal: true name: System nameWithType: System fullName: System - uid: System.Runtime.InteropServices commentId: N:System.Runtime.InteropServices isExternal: true name: System.Runtime.InteropServices nameWithType: System.Runtime.InteropServices fullName: System.Runtime.InteropServices - uid: System.Runtime.InteropServices.SafeHandle.IsInvalid commentId: P:System.Runtime.InteropServices.SafeHandle.IsInvalid parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: IsInvalid nameWithType: SafeHandle.IsInvalid fullName: System.Runtime.InteropServices.SafeHandle.IsInvalid - uid: Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid* commentId: Overload:Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid name: IsInvalid nameWithType: OrtValue.IsInvalid fullName: Microsoft.ML.OnnxRuntime.OrtValue.IsInvalid - uid: System.Boolean commentId: T:System.Boolean parent: System isExternal: true name: Boolean nameWithType: Boolean fullName: System.Boolean - uid: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData* commentId: Overload:Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData name: CreateTensorValueWithData nameWithType: OrtValue.CreateTensorValueWithData fullName: Microsoft.ML.OnnxRuntime.OrtValue.CreateTensorValueWithData - uid: Microsoft.ML.OnnxRuntime.OrtMemoryInfo commentId: T:Microsoft.ML.OnnxRuntime.OrtMemoryInfo parent: Microsoft.ML.OnnxRuntime name: OrtMemoryInfo nameWithType: OrtMemoryInfo fullName: Microsoft.ML.OnnxRuntime.OrtMemoryInfo - uid: Microsoft.ML.OnnxRuntime.Tensors.TensorElementType commentId: T:Microsoft.ML.OnnxRuntime.Tensors.TensorElementType parent: Microsoft.ML.OnnxRuntime.Tensors name: TensorElementType nameWithType: TensorElementType fullName: Microsoft.ML.OnnxRuntime.Tensors.TensorElementType - uid: System.Int64[] isExternal: true name: Int64[] nameWithType: Int64[] fullName: System.Int64[] nameWithType.vb: Int64() fullName.vb: System.Int64() name.vb: Int64() spec.csharp: - uid: System.Int64 name: Int64 nameWithType: Int64 fullName: System.Int64 isExternal: true - name: '[]' nameWithType: '[]' fullName: '[]' spec.vb: - uid: System.Int64 name: Int64 nameWithType: Int64 fullName: System.Int64 isExternal: true - name: () nameWithType: () fullName: () - uid: System.IntPtr commentId: T:System.IntPtr parent: System isExternal: true name: IntPtr nameWithType: IntPtr fullName: System.IntPtr - uid: System.Int64 commentId: T:System.Int64 parent: System isExternal: true name: Int64 nameWithType: Int64 fullName: System.Int64 - uid: Microsoft.ML.OnnxRuntime.OrtValue commentId: T:Microsoft.ML.OnnxRuntime.OrtValue parent: Microsoft.ML.OnnxRuntime name: OrtValue nameWithType: OrtValue fullName: Microsoft.ML.OnnxRuntime.OrtValue - uid: Microsoft.ML.OnnxRuntime.Tensors commentId: N:Microsoft.ML.OnnxRuntime.Tensors name: Microsoft.ML.OnnxRuntime.Tensors nameWithType: Microsoft.ML.OnnxRuntime.Tensors fullName: Microsoft.ML.OnnxRuntime.Tensors - uid: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject* commentId: Overload:Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject name: CreateFromTensorObject nameWithType: OrtValue.CreateFromTensorObject fullName: Microsoft.ML.OnnxRuntime.OrtValue.CreateFromTensorObject - uid: System.Nullable{System.Buffers.MemoryHandle} commentId: T:System.Nullable{System.Buffers.MemoryHandle} parent: System definition: System.Nullable`1 name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of MemoryHandle) fullName.vb: System.Nullable(Of System.Buffers.MemoryHandle) name.vb: Nullable(Of MemoryHandle) spec.csharp: - uid: System.Nullable`1 name: Nullable nameWithType: Nullable fullName: System.Nullable isExternal: true - name: < nameWithType: < fullName: < - uid: System.Buffers.MemoryHandle name: MemoryHandle nameWithType: MemoryHandle fullName: System.Buffers.MemoryHandle isExternal: true - name: '>' nameWithType: '>' fullName: '>' spec.vb: - uid: System.Nullable`1 name: Nullable nameWithType: Nullable fullName: System.Nullable isExternal: true - name: '(Of ' nameWithType: '(Of ' fullName: '(Of ' - uid: System.Buffers.MemoryHandle name: MemoryHandle nameWithType: MemoryHandle fullName: System.Buffers.MemoryHandle isExternal: true - name: ) nameWithType: ) fullName: ) - uid: System.Nullable`1 commentId: T:System.Nullable`1 isExternal: true name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of T) fullName.vb: System.Nullable(Of T) name.vb: Nullable(Of T) spec.csharp: - uid: System.Nullable`1 name: Nullable nameWithType: Nullable fullName: System.Nullable isExternal: true - name: < nameWithType: < fullName: < - name: T nameWithType: T fullName: T - name: '>' nameWithType: '>' fullName: '>' spec.vb: - uid: System.Nullable`1 name: Nullable nameWithType: Nullable fullName: System.Nullable isExternal: true - name: '(Of ' nameWithType: '(Of ' fullName: '(Of ' - name: T nameWithType: T fullName: T - name: ) nameWithType: ) fullName: ) - uid: System.Runtime.InteropServices.SafeHandle.ReleaseHandle commentId: M:System.Runtime.InteropServices.SafeHandle.ReleaseHandle parent: System.Runtime.InteropServices.SafeHandle isExternal: true name: ReleaseHandle() nameWithType: SafeHandle.ReleaseHandle() fullName: System.Runtime.InteropServices.SafeHandle.ReleaseHandle() spec.csharp: - uid: System.Runtime.InteropServices.SafeHandle.ReleaseHandle name: ReleaseHandle nameWithType: SafeHandle.ReleaseHandle fullName: System.Runtime.InteropServices.SafeHandle.ReleaseHandle isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) spec.vb: - uid: System.Runtime.InteropServices.SafeHandle.ReleaseHandle name: ReleaseHandle nameWithType: SafeHandle.ReleaseHandle fullName: System.Runtime.InteropServices.SafeHandle.ReleaseHandle isExternal: true - name: ( nameWithType: ( fullName: ( - name: ) nameWithType: ) fullName: ) - uid: Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle* commentId: Overload:Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle name: ReleaseHandle nameWithType: OrtValue.ReleaseHandle fullName: Microsoft.ML.OnnxRuntime.OrtValue.ReleaseHandle