Photon Unity Networking 2: Extensions Class Reference

Photon Unity Networking 2

This static class defines some useful extension methods for several existing classes (e.g. Vector3, float and others). More...

Static Public Member Functions

static void Merge (this IDictionary target, IDictionary addHash)
 Merges all keys from addHash into the target. Adds new keys and updates the values of existing keys in target. More...
 
static void MergeStringKeys (this IDictionary target, IDictionary addHash)
 Merges keys of type string to target Hashtable. More...
 
static string ToStringFull (this IDictionary origin)
 Helper method for debugging of IDictionary content, inlcuding type-information. Using this is not performant. More...
 
static string ToStringFull< T > (this List< T > data)
 Helper method for debugging of List<T> content. Using this is not performant. More...
 
static string ToStringFull (this object[] data)
 Helper method for debugging of object[] content. Using this is not performant. More...
 
static Hashtable StripToStringKeys (this IDictionary original)
 This method copies all string-typed keys of the original into a new Hashtable. More...
 
static void StripKeysWithNullValues (this IDictionary original)
 This removes all key-value pairs that have a null-reference as value. Photon properties are removed by setting their value to null. Changes the original passed IDictionary! More...
 
static bool Contains (this int[] target, int nr)
 Checks if a particular integer value is in an int-array. More...
 

Detailed Description

This static class defines some useful extension methods for several existing classes (e.g. Vector3, float and others).

Member Function Documentation

static bool Contains ( this int[]  target,
int  nr 
)
static

Checks if a particular integer value is in an int-array.

This might be useful to look up if a particular actorNumber is in the list of players of a room.

Parameters
targetThe array of ints to check.
nrThe number to lookup in target.
Returns
True if nr was found in target.
static void Merge ( this IDictionary  target,
IDictionary  addHash 
)
static

Merges all keys from addHash into the target. Adds new keys and updates the values of existing keys in target.

Parameters
targetThe IDictionary to update.
addHashThe IDictionary containing data to merge into target.
static void MergeStringKeys ( this IDictionary  target,
IDictionary  addHash 
)
static

Merges keys of type string to target Hashtable.

Does not remove keys from target (so non-string keys CAN be in target if they were before).

Parameters
targetThe target IDicitionary passed in plus all string-typed keys from the addHash.
addHashA IDictionary that should be merged partly into target to update it.
static void StripKeysWithNullValues ( this IDictionary  original)
static

This removes all key-value pairs that have a null-reference as value. Photon properties are removed by setting their value to null. Changes the original passed IDictionary!

Parameters
originalThe IDictionary to strip of keys with null-values.
static Hashtable StripToStringKeys ( this IDictionary  original)
static

This method copies all string-typed keys of the original into a new Hashtable.

Does not recurse (!) into hashes that might be values in the root-hash. This does not modify the original.

Parameters
originalThe original IDictonary to get string-typed keys from.
Returns
New Hashtable containing only string-typed keys of the original.
static string ToStringFull ( this IDictionary  origin)
static

Helper method for debugging of IDictionary content, inlcuding type-information. Using this is not performant.

Should only be used for debugging as necessary.

Parameters
originSome Dictionary or Hashtable.
Returns
String of the content of the IDictionary.
static string ToStringFull ( this object[]  data)
static

Helper method for debugging of object[] content. Using this is not performant.

Should only be used for debugging as necessary.

Parameters
dataAny object[].
Returns
A comma-separated string containing each value's ToString().
static string ToStringFull< T > ( this List< T >  data)
static

Helper method for debugging of List<T> content. Using this is not performant.

Should only be used for debugging as necessary.

Parameters
dataAny List<T> where T implements .ToString().
Returns
A comma-separated string containing each value's ToString().
Online Documentation  -  Dashboard  -  Support Forum Exit Games GmbH