本文整理汇总了C#中System.Factory.GetAllContainersAsSimpleList方法的典型用法代码示例。如果您正苦于以下问题:C# Factory.GetAllContainersAsSimpleList方法的具体用法?C# Factory.GetAllContainersAsSimpleList怎么用?C# Factory.GetAllContainersAsSimpleList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Factory
的用法示例。
在下文中一共展示了Factory.GetAllContainersAsSimpleList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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)
{
Factory factory = new Factory(m_Control.Options.Username, m_Control.Options.ApiKey);
var simpleList = factory.GetAllContainersAsSimpleList();
if (simpleList.Contains(m_Control.ContainerName))
{
if (m_Control.IsPublic)
{
factory.SetPublicContainer(m_Control.ContainerName);
}
else
{
factory.SetPrivateContainer(m_Control.ContainerName);
}
}
else
{
factory.CreateContainer(m_Control.ContainerName);
if (m_Control.IsPublic)
{
factory.SetPublicContainer(m_Control.ContainerName);
}
}
var dictionary = new Dictionary<string, string>
{
{"ContainerName", m_Control.ContainerName},
{"Public", m_Control.IsPublic.ToString()}
};
// save the value of the control depending on whether a new file is uploaded);
this.Data.Value = dictionary.SerializeToJson();
}
示例2: CreateChildControls
/// <summary>
/// Creates child controls for this control
/// </summary>
protected override void CreateChildControls()
{
base.CreateChildControls();
// set-up child controls
this.txtUsername = new TextBox() { ID = "txtUsername", CssClass = "guiInputText umbEditorTextField" };
this.txtApiKey = new TextBox() { ID = "txtApiKey", CssClass = "guiInputText umbEditorTextField" };
this.ddlDefaultContainer = new DropDownList() { ID = "ddlDefaultContainer" };
this.ddlDefaultContainer.Items.Clear();
this.ddlDefaultContainer.Items.Add(string.Empty);
if (!string.IsNullOrEmpty(cfcmd_options.Username) && !string.IsNullOrEmpty(cfcmd_options.ApiKey))
{
Factory factory = new Factory(cfcmd_options.Username, cfcmd_options.ApiKey);
var containers = factory.GetAllContainersAsSimpleList();
foreach (string container in containers)
{
this.ddlDefaultContainer.Items.Add(new ListItem(container, container));
}
}
// add the child controls
this.Controls.AddPrevalueControls(this.txtUsername, this.txtApiKey, this.ddlDefaultContainer);
}