DecodeBase64Attributes() public static method

Decodes specific attributes from base64 to their binary representation.
public static DecodeBase64Attributes ( Document document ) : void
document Document
return void
 /// <summary>
 /// <para>
 /// Decodes root-level Base64-encoded strings to their binary representations.
 /// Use this method if the Document was constructed from JSON that contains
 /// base64-encoded binary values, which result from calling ToJson on a Document
 /// with binary data.
 /// </para>
 /// <para>
 /// Individual strings become binary data.
 /// List and sets of Base64-encoded strings become lists and sets of binary data.
 /// </para>
 /// </summary>
 /// <param name="attributeNames">Names of root-level attributes to decode.</param>
 public void DecodeBase64Attributes(params string[] attributeNames)
 {
     JsonUtils.DecodeBase64Attributes(this, attributeNames);
 }