| ScanUtilswriteElementArray Method  | 
            Writes array 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)
Syntaxpublic static void writeElementArray(
	XmlDictionaryWriter writer,
	string elementName,
	List<string> list,
	bool skipIfListIsEmpty = true
)
Public Shared Sub writeElementArray ( 
	writer As XmlDictionaryWriter,
	elementName As String,
	list As List(Of String),
	Optional skipIfListIsEmpty As Boolean = true
)
public:
static void writeElementArray(
	XmlDictionaryWriter^ writer, 
	String^ elementName, 
	List<String^>^ list, 
	bool skipIfListIsEmpty = true
)
static member writeElementArray : 
        writer : XmlDictionaryWriter * 
        elementName : string * 
        list : List<string> * 
        ?skipIfListIsEmpty : bool 
(* Defaults:
        let _skipIfListIsEmpty = defaultArg skipIfListIsEmpty true
*)
-> unit 
Parameters
- writer
 - Type: System.XmlXmlDictionaryWriter
 - elementName
 - Type: SystemString
 - list
 - Type: System.Collections.GenericListString
 - skipIfListIsEmpty (Optional)
 - Type: SystemBoolean
 
See Also