SlickUpload Documentation
- Installation
- Configuration
- Quick Start Guide
- How To
- Concepts
- Troubleshooting
- FAQ/Known Issues
- Upgrading
- Client Reference
-
Server Reference
- Class reference syntax
- Installing the license
-
SlickUpload Namespaces
- Krystalware.SlickUpload
- Krystalware.SlickUpload.Configuration
- Krystalware.SlickUpload.Storage
- Krystalware.SlickUpload.Storage.Streams
- Krystalware.SlickUpload.Web
- Krystalware.SlickUpload.Web.Controls
- Krystalware.SlickUpload.Web.Controls.Design
- Krystalware.SlickUpload.Web.Handlers
- Krystalware.SlickUpload.Web.Mvc
- Krystalware.SlickUpload.Web.SessionStorage
Class reference syntax
In many places in SlickUpload, you can specify a class reference to produce custom
behavior. SlickUpload uses the standard .NET assembly/class reference syntax, which
is "Fully Qualified Class Name, Assembly Name".
Here is an example of referencing the class Namespace.ClassName
in the assembly Assembly.dll:
"Namespace.ClassName, Assembly"
If the class is automatically compiled because it is in the App_Code folder, don't
specify an assembly name – SlickUpload will automatically assume that you are
pointing to a class in the App_Code folder. Here is an example for the class ClassName
in the App_Code folder:
"ClassName"