Specifies constants indicating where to store files in PersonalStorage on the server.

Namespace: ININ.IceLib.Connection
Assembly: ININ.IceLib (in ININ.IceLib.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public enum ServerFileType
Visual Basic
Public Enumeration ServerFileType

Members

Member nameValueDescription
Other0The destination for this file is unable to be determined based on file type, use the default destination.
Fax1The destination for this file is the location for Fax files.
Voicemail2The destination for this file is the location for Voicemail files.
Email3The destination for this file is the location for Email files.
Chat4The destination for this file is the location for Chat files.
ResponseManagementDocument5The destination for this file is the location for Response Management documents.
ApplicationSettings6The destination for this file is the location for Application Settings.
ImageResource7The destination for this file is the location for Image resources.
ProblemReport8The destination for this file is the location for Problem Report files.
ClientTemplate9The destination for this file is the location for Client templates.
CrystalReportTemplate10The destination for this file is the location for Crystal Report Templates

Remarks

This enumeration is used by RemoteFileHelper to specify a remote file type.

Examples

The following example demonstrates creation of a remote file name.
CopyC#
string remoteFileName = RemoteFileHelper.NewRemoteFileName(ServerFileType.Other);

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also