ContentTransferEncoding Property

Object: SoftArtisans.SAFile
Syntax: ContentTransferEncoding
Type: String
Read/Write: Read Only
Description:

This property is typically blank, but may contain the MIME Content Transfer Encoding.

See also the ContentTransferEncoding property for the SAFileUp object.

Examples:
ASP The Content Transfer Encoding of the first uploaded file is:
<%=fileUpload.Form("File1").ContentTransferEncoding%>.
C# results.Append("The Content Transfer Encoding of the first uploaded file is: " +
((SaFile)fileUpload.Form["File1"]).ContentTransferEncoding);
VB.NET results.Append("The Content Transfer Encoding of the first uploaded file is: " + _
CType(fileUpload.Form("File1"), SaFile).ContentTransferEncoding)

Copyright © 2010 SoftArtisans, Inc. All rights reserved.