SystemOptionsServicesUploadAffixFile Method
|
Uploads a Dictionary Affix File for spellchecking of specific language. This action can only invoked via multipart form post.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public 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
- Type: System.IOStream
Dictionary file content
Return Value
Type:
XHRServiceResponseGenericFileUploadResultInformation of uploaded dictionary affix file
Examples Sample JSON return
{
"ContentFreezeEndTime": "",
"ContentFreezeStartTime": "",
"code": 0,
"error": null,
"message": {
"uploadedFiles": [
"de-de.aff"
]
}
}
See Also