| 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
Syntax public static string ComposeUpdateBuffer(
string recordIds,
string records,
string originalRecords = ""
)
Public Shared Function ComposeUpdateBuffer (
recordIds As String,
records As String,
Optional originalRecords As String = ""
) As String
public:
static String^ ComposeUpdateBuffer(
String^ recordIds,
String^ records,
String^ originalRecords = L""
)
static member ComposeUpdateBuffer :
recordIds : string *
records : string *
?originalRecords : string
(* Defaults:
let _originalRecords = defaultArg originalRecords ""
*)
-> string
Parameters
- recordIds String
- Block of "recordIds". You can obtain this block with ComposeRecordIds function.
- records String
- Block of "records". You can obtain this block with ComposeRecords function.
- originalRecords String (Optional)
- Block of "originalRecords". You can obtain this block with ComposeRecords function.
Return Value
StringThe buffer to be used by Update Operations.
See Also