var model = new GroupHtmlWrapperRequestModel()
{
ParticipantID = 1234567890
};
var results = serviceClient.GetProcessHtmlWrapper(sa, model);
if (results.IsSuccessful)
{
var headerHtml = results.HtmlWrapper.HeaderHtml;
var footHtml = results.HtmlWrapper.FooterHtml;
}
else
{
//handle error
}
Dim model = New GroupHtmlWrapperRequestModel() With { _
.ParticipantID = 1234567890
}
Dim results = serviceClient.GetProcessHtmlWrapper(sa, model)
If results.IsSuccessful Then
var headerHtml = results.HtmlWrapper.HeaderHtml 'use the return values for your header html
var footerHtml = results.HtmlWrapper.FooterHtml 'and footer html
Else
'Handle error
End If