當前位置: 首頁>>代碼示例>>C#>>正文


C# Factory.GetAllContainersAsSimpleList方法代碼示例

本文整理匯總了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();
        }
開發者ID:Jeavon,項目名稱:Cloud-Proivders-for-Universal-Media-Picker,代碼行數:37,代碼來源:CFCC_DataType.cs

示例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);
        }
開發者ID:Jeavon,項目名稱:Cloud-Proivders-for-Universal-Media-Picker,代碼行數:27,代碼來源:CFCMD_PrevalueEditor.cs


注:本文中的System.Factory.GetAllContainersAsSimpleList方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。