Skip to content

XMediator::Api::CustomProperties

A container class for key-value custom properties. Use Builder to create an instance of this class.

Public Classes

Name
class Builder
A convenience class for creating CustomProperties.

Public Functions

Name
int? GetInt(string key)
long? GetLong(string key)
float? GetFloat(string key)
double? GetDouble(string key)
string GetString(string key)
IEnumerable< string > GetStringSet(string key)
Builder NewBuilder()
Returns a new Builder with all of the key-value pairs from this object.

Public Functions Documentation

function GetInt

int? GetInt(
    string key
)

function GetLong

long? GetLong(
    string key
)

function GetFloat

float? GetFloat(
    string key
)

function GetDouble

double? GetDouble(
    string key
)

function GetString

string GetString(
    string key
)

function GetStringSet

IEnumerable< string > GetStringSet(
    string key
)

function NewBuilder

Builder NewBuilder()

Returns a new Builder with all of the key-value pairs from this object.

Return:


Updated on 2024-10-03 at 21:09:07 +0000