docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Struct SerializedObjectView

    A view on top of the PackedBinaryStream that represents a set of key-values.

    Implements
    IEnumerable<SerializedMemberView>
    IEnumerable
    Inherited Members
    ValueType.Equals(object)
    ValueType.GetHashCode()
    ValueType.ToString()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: Unity.Serialization.Json
    Assembly: Unity.Serialization.dll
    Syntax
    public readonly struct SerializedObjectView : IEnumerable<SerializedMemberView>, IEnumerable

    Properties

    this[string]

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView this[string name] { get; }
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    Property Value
    Type Description
    SerializedValueView
    Exceptions
    Type Condition
    KeyNotFoundException

    The key does not exist in the collection.

    this[FixedString128Bytes]

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView this[in FixedString128Bytes name] { get; }
    Parameters
    Type Name Description
    FixedString128Bytes name

    The key of the value to get.

    Property Value
    Type Description
    SerializedValueView
    Exceptions
    Type Condition
    KeyNotFoundException

    The key does not exist in the collection.

    this[FixedString32Bytes]

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView this[in FixedString32Bytes name] { get; }
    Parameters
    Type Name Description
    FixedString32Bytes name

    The key of the value to get.

    Property Value
    Type Description
    SerializedValueView
    Exceptions
    Type Condition
    KeyNotFoundException

    The key does not exist in the collection.

    this[FixedString64Bytes]

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView this[in FixedString64Bytes name] { get; }
    Parameters
    Type Name Description
    FixedString64Bytes name

    The key of the value to get.

    Property Value
    Type Description
    SerializedValueView
    Exceptions
    Type Condition
    KeyNotFoundException

    The key does not exist in the collection.

    Methods

    GetEnumerator()

    Returns an enumerator that iterates through the SerializedObjectView.

    Declaration
    public SerializedObjectView.Enumerator GetEnumerator()
    Returns
    Type Description
    SerializedObjectView.Enumerator

    A SerializedObjectView.Enumerator for the SerializedObjectView.

    GetMember(string)

    Gets the member associated with the specified key.

    Declaration
    public SerializedMemberView GetMember(string name)
    Parameters
    Type Name Description
    string name

    The key of the member to get.

    Returns
    Type Description
    SerializedMemberView

    Returns the member associated with the specified key.

    GetMember<T>(in T)

    Gets the member associated with the specified key.

    Declaration
    public SerializedMemberView GetMember<T>(in T name) where T : unmanaged, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    T name

    The key of the member to get.

    Returns
    Type Description
    SerializedMemberView

    Returns the member associated with the specified key.

    Type Parameters
    Name Description
    T

    The fixed string type.

    GetValue(string)

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView GetValue(string name)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    Returns
    Type Description
    SerializedValueView

    Returns the value associated with the specified key.

    GetValue<T>(in T)

    Gets the value associated with the specified key.

    Declaration
    public SerializedValueView GetValue<T>(in T name) where T : unmanaged, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    T name

    The key of the value to get.

    Returns
    Type Description
    SerializedValueView

    Returns the value associated with the specified key.

    Type Parameters
    Name Description
    T

    The fixed string type.

    TryGetMember(string, out SerializedMemberView)

    Gets the member associated with the specified key.

    Declaration
    public bool TryGetMember(string name, out SerializedMemberView member)
    Parameters
    Type Name Description
    string name

    The key of the member to get.

    SerializedMemberView member

    When this method returns, contains the member associated with the specified key, if the key is found; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key; otherwise, false.

    TryGetMember<T>(in T, out SerializedMemberView)

    Gets the member associated with the specified key.

    Declaration
    public bool TryGetMember<T>(in T name, out SerializedMemberView member) where T : unmanaged, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    T name

    The key of the member to get.

    SerializedMemberView member

    When this method returns, contains the member associated with the specified key, if the key is found; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key; otherwise, false.

    Type Parameters
    Name Description
    T

    The fixed string type.

    TryGetValue(string, out SerializedValueView)

    Gets the value associated with the specified key.

    Declaration
    public bool TryGetValue(string name, out SerializedValueView value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    SerializedValueView value

    When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key; otherwise, false.

    TryGetValueAsBoolean(string, out bool)

    Gets the value associated with the specified key as a bool.

    Declaration
    public bool TryGetValueAsBoolean(string name, out bool value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    bool value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValueAsDouble(string, out double)

    Gets the value associated with the specified key as a double.

    Declaration
    public bool TryGetValueAsDouble(string name, out double value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    double value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValueAsFloat(string, out float)

    Gets the value associated with the specified key as a float.

    Declaration
    public bool TryGetValueAsFloat(string name, out float value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    float value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValueAsInt64(string, out long)

    Gets the value associated with the specified key as a long.

    Declaration
    public bool TryGetValueAsInt64(string name, out long value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    long value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValueAsString(string, out string)

    Gets the value associated with the specified key as a string.

    Declaration
    public bool TryGetValueAsString(string name, out string value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    string value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValueAsUInt64(string, out ulong)

    Gets the value associated with the specified key as a ulong.

    Declaration
    public bool TryGetValueAsUInt64(string name, out ulong value)
    Parameters
    Type Name Description
    string name

    The key of the value to get.

    ulong value

    When this method returns, contains the value associated with the specified key and type, if the key is found and the type matches; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key and type; otherwise, false.

    TryGetValue<T>(in T, out SerializedValueView)

    Gets the value associated with the specified key.

    Declaration
    public bool TryGetValue<T>(in T name, out SerializedValueView value) where T : unmanaged, INativeList<byte>, IUTF8Bytes
    Parameters
    Type Name Description
    T name

    The key of the value to get.

    SerializedValueView value

    When this method returns, contains the value associated with the specified key, if the key is found; otherwise, the default value.

    Returns
    Type Description
    bool

    true if the SerializedObjectView contains an element with the specified key; otherwise, false.

    Type Parameters
    Name Description
    T

    The fixed string type.

    Operators

    implicit operator SerializedValueView(SerializedObjectView)

    Re-interprets the specified object view to an untyped value view.

    Declaration
    public static implicit operator SerializedValueView(SerializedObjectView view)
    Parameters
    Type Name Description
    SerializedObjectView view

    The object view to re-interpret.

    Returns
    Type Description
    SerializedValueView

    The untyped value view for the given object.

    Implements

    IEnumerable<T>
    IEnumerable
    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)