SystemOptionsServicesUploadAffixFile Method
|
Uploads a Dictionary Affix File for spellchecking of specific language. This action can only invoked via multipart form post.
Namespace: IngeniuxCMServiceAssembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.492
Syntaxpublic XHRServiceResponseGeneric<FileUploadResult> UploadAffixFile(
Stream FileByteStream
)
Public Function UploadAffixFile (
FileByteStream As Stream
) As XHRServiceResponseGeneric(Of FileUploadResult)
public:
XHRServiceResponseGeneric<FileUploadResult^>^ UploadAffixFile(
Stream^ FileByteStream
)
member UploadAffixFile :
FileByteStream : Stream -> XHRServiceResponseGeneric<FileUploadResult> Parameters
- FileByteStream Stream
- Dictionary file content
Return Value
XHRServiceResponseGenericFileUploadResultInformation of uploaded dictionary affix file
ExampleSample JSON return
{
"ContentFreezeEndTime": "",
"ContentFreezeStartTime": "",
"code": 0,
"error": null,
"message": {
"uploadedFiles": [
"de-de.aff"
]
}
}
See Also