Show / Hide Table of Contents

    Class SystemType

    Reference to a class Type with support for Unity serialization.

    Inheritance
    Object
    SystemType
    Namespace: Microsoft.MixedReality.Toolkit.Utilities
    Assembly: cs.temp.dll.dll
    Syntax
    [Serializable]
    public sealed class SystemType : ISerializationCallbackReceiver

    Constructors

    SystemType(String)

    Initializes a new instance of the SystemType class.

    Declaration
    public SystemType(string assemblyQualifiedClassName)
    Parameters
    Type Name Description
    String assemblyQualifiedClassName

    Assembly qualified class name.

    SystemType(Type)

    Initializes a new instance of the SystemType class.

    Declaration
    public SystemType(Type type)
    Parameters
    Type Name Description
    Type type

    Class type.

    Exceptions
    Type Condition
    ArgumentException

    If type is not a class type.

    Properties

    Type

    Gets or sets type of class reference.

    Declaration
    public Type Type { get; set; }
    Property Value
    Type Description
    Type
    Exceptions
    Type Condition
    ArgumentException

    If value is not a class type.

    Methods

    GetReference(Type)

    Declaration
    public static string GetReference(Type type)
    Parameters
    Type Name Description
    Type type
    Returns
    Type Description
    String

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    String

    Operators

    Implicit(SystemType to String)

    Declaration
    public static implicit operator string (SystemType type)
    Parameters
    Type Name Description
    SystemType type
    Returns
    Type Description
    String

    Implicit(SystemType to Type)

    Declaration
    public static implicit operator Type(SystemType type)
    Parameters
    Type Name Description
    SystemType type
    Returns
    Type Description
    Type

    Implicit(Type to SystemType)

    Declaration
    public static implicit operator SystemType(Type type)
    Parameters
    Type Name Description
    Type type
    Returns
    Type Description
    SystemType
    Back to top Generated by DocFX