本文整理汇总了C#中System.Factory.PutItemInContainer方法的典型用法代码示例。如果您正苦于以下问题:C# Factory.PutItemInContainer方法的具体用法?C# Factory.PutItemInContainer怎么用?C# Factory.PutItemInContainer使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Factory
的用法示例。
在下文中一共展示了Factory.PutItemInContainer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: DataEditorControl_OnSave
/// <summary>
/// Saves the editor control value.
/// </summary>
/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
private void DataEditorControl_OnSave(EventArgs e)
{
SaveEventArgs eventArgs = new SaveEventArgs();
FireBeforeSave(eventArgs);
if(eventArgs.Cancel) return;
string fileUrl = string.Empty;
string containerName = string.Empty;
var postedFile = this.m_Control.PostedFile;
if(postedFile != null)
{
Factory factory = new Factory(m_Control.Options.Username, this.m_Control.Options.ApiKey);
if (!string.IsNullOrEmpty(ContainerName))
{
//Get containerName from private ContainerName, which is set by a beforesave event.
containerName = ContainerName;
}
else if(!string.IsNullOrEmpty(m_Control.Options.DefaultContainer))
{
//Get default container name from prevalues.
containerName = m_Control.Options.DefaultContainer;
}
else if (!string.IsNullOrEmpty(m_Control.Options.DefaultContainerAlias))
{
//Get containerName by posted container name via prevalue default alias.
string defaultAlias = m_Control.Options.DefaultContainerAlias.AddDefaultAlias();
NameValueCollection form = HttpContext.Current.Request.Form;
foreach (string s in form.AllKeys.Where(s => s.Contains(defaultAlias)))
{
containerName = form.Get(s);
}
}
//Check if the Container Name was actually set along the way before trying to upload
if (!string.IsNullOrEmpty(containerName))
{
//upload file to container
factory.PutItemInContainer(containerName, postedFile.InputStream, postedFile.FileName);
//get the url of the file in CDN
fileUrl = factory.GetCdnUriForItem(containerName, postedFile.FileName);
}
}
var dictionary = new Dictionary<string, string>
{
{"FileUrl", string.IsNullOrEmpty(fileUrl) ? m_Control.FileUrl : fileUrl},
{"ContainerName", containerName}
};
// save the value of the control depending on whether a new file is uploaded););
this.Data.Value = dictionary.SerializeToJson();
FireAfterSave(eventArgs);
}