ScanUtilswriteElementDict Method |
Writes dictionary value to JSON.
Namespace: asprise_imaging_apiAssembly: asprise-imaging-scan.net-api (in asprise-imaging-scan.net-api.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static void writeElementDict(
XmlDictionaryWriter writer,
string elementName,
Dictionary<string, string> dict,
bool skipIfDictIsEmpty = true
)
Public Shared Sub writeElementDict (
writer As XmlDictionaryWriter,
elementName As String,
dict As Dictionary(Of String, String),
Optional skipIfDictIsEmpty As Boolean = true
)
public:
static void writeElementDict(
XmlDictionaryWriter^ writer,
String^ elementName,
Dictionary<String^, String^>^ dict,
bool skipIfDictIsEmpty = true
)
static member writeElementDict :
writer : XmlDictionaryWriter *
elementName : string *
dict : Dictionary<string, string> *
?skipIfDictIsEmpty : bool
(* Defaults:
let _skipIfDictIsEmpty = defaultArg skipIfDictIsEmpty true
*)
-> unit
Parameters
- writer
- Type: System.XmlXmlDictionaryWriter
- elementName
- Type: SystemString
- dict
- Type: System.Collections.GenericDictionaryString, String
- skipIfDictIsEmpty (Optional)
- Type: SystemBoolean
See Also