Search Results for

    Show / Hide Table of Contents

    Class OutputArgument

    An output argument passed to a script function.

    Inheritance
    Object
    OutputArgument
    Implements
    IDisposable
    Inherited Members
    Object.ToString()
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.ReferenceEquals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Namespace: GTA.Native
    Assembly: ScriptHookVDotNet3.dll
    Syntax
    public class OutputArgument : IDisposable

    Constructors

    | Improve this Doc View Source

    OutputArgument()

    Initializes a new instance of the OutputArgument class for script functions that output data into pointers.

    Declaration
    public OutputArgument()
    | Improve this Doc View Source

    OutputArgument(Object)

    Initializes a new instance of the OutputArgument class with an initial value for script functions that require the pointer to data instead of the actual data.

    Declaration
    public OutputArgument(object value)
    Parameters
    Type Name Description
    Object value

    The value to set the data of this OutputArgument to.

    Methods

    | Improve this Doc View Source

    Dispose()

    Declaration
    public void Dispose()
    | Improve this Doc View Source

    Dispose(Boolean)

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    Boolean disposing
    | Improve this Doc View Source

    Finalize()

    Frees the unmanaged resources associated with this OutputArgument.

    Declaration
    protected void Finalize()
    | Improve this Doc View Source

    GetResult<T>()

    Gets the value of data stored in this OutputArgument.

    Declaration
    public T GetResult<T>()
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T

    Implements

    System.IDisposable
    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX