ICommonConfiguration.

MarkTransient(string) Method

Summary

allows to mark fields as transient with custom annotations/attributes.

Syntax

void MarkTransient(string attributeName)

Remarks

allows to mark fields as transient with custom annotations/attributes.

.NET only: Call this method with the attribute name that you wish to use to mark fields as transient. Multiple transient attributes are possible by calling this method multiple times with different attribute names.

In a client/server environment it is good practice to configure the client and the server in exactly the same way.

Parameters

Name Type Description
attributeName string - the fully qualified name of the attribute, including it's namespace

Return Value

Type Description
void