  | StringFunctionsComposeUpdateBuffer(String, String, String) Method | 
Linkar Framework for .NET and Core
            Compose the fully buffer of the Update Operations with the block of "recordIds", "records" and "originalRecords".
            
Namespace: Linkar.StringsAssembly: Linkar.Strings (in Linkar.Strings.dll) Version: 2.3.1
Syntaxpublic static string ComposeUpdateBuffer(
	string[] recordIds,
	string[] records,
	string[] originalRecords = null
)
Public Shared Function ComposeUpdateBuffer ( 
	recordIds As String(),
	records As String(),
	Optional originalRecords As String() = Nothing
) As String
public:
static String^ ComposeUpdateBuffer(
	array<String^>^ recordIds, 
	array<String^>^ records, 
	array<String^>^ originalRecords = nullptr
)
static member ComposeUpdateBuffer : 
        recordIds : string[] * 
        records : string[] * 
        ?originalRecords : string[] 
(* Defaults:
        let _originalRecords = defaultArg originalRecords null
*)
-> string Parameters
- recordIds  String
 - Array of "recordIds".
 - records  String
 - Array of "records".
 - originalRecords  String  (Optional)
 - Array of "originalRecords".
 
Return Value
StringThe buffer to be used by Update Operations.
See Also