Search Results for

    Show / Hide Table of Contents

    Struct Header

    A serializable key-value pair that's used in http request headers.

    Namespace: Algorand.Unity
    Assembly: cs.temp.dll.dll
    Syntax
    [Serializable]
    public struct Header

    Constructors

    Header(String, String)

    Declaration
    public Header(string key, string value)
    Parameters
    Type Name Description
    String key
    String value

    Fields

    Key

    Declaration
    public string Key
    Field Value
    Type Description
    String

    Value

    Declaration
    public string Value
    Field Value
    Type Description
    String

    Methods

    Deconstruct(out String, out String)

    Declaration
    public void Deconstruct(out string key, out string value)
    Parameters
    Type Name Description
    String key
    String value

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    String
    Overrides
    ValueType.ToString()

    Operators

    Implicit(Header to (String, String))

    Declaration
    public static implicit operator (string, string)(Header header)
    Parameters
    Type Name Description
    Header header
    Returns
    Type Description
    ValueTuple<String, String>

    Implicit((String, String) to Header)

    Declaration
    public static implicit operator Header((string, string) tuple)
    Parameters
    Type Name Description
    ValueTuple<String, String> tuple
    Returns
    Type Description
    Header
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾