当前位置: 首页>>代码示例>>C#>>正文


C# CmsWebServiceClient.GetAllInterlockPropertiesAsync方法代码示例

本文整理汇总了C#中CmsWebServiceClient.GetAllInterlockPropertiesAsync方法的典型用法代码示例。如果您正苦于以下问题:C# CmsWebServiceClient.GetAllInterlockPropertiesAsync方法的具体用法?C# CmsWebServiceClient.GetAllInterlockPropertiesAsync怎么用?C# CmsWebServiceClient.GetAllInterlockPropertiesAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CmsWebServiceClient的用法示例。


在下文中一共展示了CmsWebServiceClient.GetAllInterlockPropertiesAsync方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: AddEditExistingInterlockPropertyViewModel

        public AddEditExistingInterlockPropertyViewModel(InterlockType interlockType)
        {
            mInterlockTypeId = interlockType.Id;
            OkButtonCommand = new DelegateCommand<object>(OkButtonHander, CanModify);
            CancelButtonCommand = new DelegateCommand<object>(CancelButtonHander, x => true);

            CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
            Properties = new List<InterlockProperty>();

            //Load Interlock types
            EventHandler<GetAllInterlockPropertiesCompletedEventArgs> fetchCompleted = (s, eventArgs) =>
                                              {
                                                  cmsWebServiceClient.GetInterlockPropertiesCompleted +=
                                                      (s1, e1)
                                                      =>
                                                          {
                                                              List<int> listOfAssignedPropertyIds = new List<int>();
                                                              e1.Result.ForEach(x => listOfAssignedPropertyIds.Add(x.Id));

                                                              foreach (var interlockProperty in eventArgs.Result)
                                                              {
                                                                  if (!listOfAssignedPropertyIds.Contains(interlockProperty.Id))
                                                                  {
                                                                      Properties.Add(interlockProperty);
                                                                  }
                                                              }

                                                              if (Properties.Count > 0)
                                                              {
                                                                  SelectedProperty = Properties[0];
                                                              }
                                                              Loaded();
                                                          };

                                                  cmsWebServiceClient.GetInterlockPropertiesAsync(interlockType.Id);
                                              };
            cmsWebServiceClient.GetAllInterlockPropertiesCompleted += fetchCompleted;
            cmsWebServiceClient.GetAllInterlockPropertiesAsync();
        }
开发者ID:barrett2474,项目名称:CMS2,代码行数:39,代码来源:AddEditExistingInterlockPropertyViewModel.cs

示例2: LoadInterlockProperties

        private void LoadInterlockProperties(NodeView expandedNode)
        {
            var cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);

            EventHandler<GetAllInterlockPropertiesCompletedEventArgs> fetchCompleted = null;
            fetchCompleted = (s, eventArgs) =>
            {
                var properties = eventArgs.Result;
                if (properties != null)
                {
                    foreach (var property in properties)
                    {
                        var child = new NodeView(expandedNode)
                        {
                            Id = property.Id,
                            Name = property.Name,
                            Description = property.Description,
                            Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
                            Type = NodeType.InterlockProperty,
                            HasChildren = false,
                            SortField = property.Name
                        };
                        expandedNode.Children.Add(child);
                        cmsWebServiceClient.GetAllInterlockPropertiesCompleted -= fetchCompleted;
                    }
                    expandedNode.Sort();
                }
            };
            cmsWebServiceClient.GetAllInterlockPropertiesCompleted += fetchCompleted;
            cmsWebServiceClient.GetAllInterlockPropertiesAsync();
        }
开发者ID:barrett2474,项目名称:CMS2,代码行数:31,代码来源:ControlSystemConfigControl.xaml.cs

示例3: LoadExistingProperties

        public void LoadExistingProperties()
        {
            CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);

            switch (mEquipmentPropertyType)
            {
                case CommonUtils.EquipmentPropertyType.ControlEngineeringProperty:
                    cmsWebServiceClient.GetAllControlSystemPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllControlSystemPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.ControlTuningProperty:
                    cmsWebServiceClient.GetAllControlSystemTuningPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllControlSystemTuningPropertiesAsync();
                    break;

                case CommonUtils.EquipmentPropertyType.ControlInterlockProperty:
                    cmsWebServiceClient.GetAllInterlockPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllInterlockPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.ElectricalProperty:
                    cmsWebServiceClient.GetAllElectricalEquipmentPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllElectricalEquipmentPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.InstrumentProperty:
                    cmsWebServiceClient.GetAllInstrumentPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllInstrumentPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.MechanicalProperty:
                    cmsWebServiceClient.GetAllMechanicalEquipmentPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllMechanicalEquipmentPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.MobilePlantProperty:
                    cmsWebServiceClient.GetAllMobilePlantPropertiesCompleted += (s, e) =>
                    {
                        if (ExistingProperties == null) ExistingProperties = new List<IComponentProperty>();
                        ExistingProperties.Clear();

                        e.Result.ForEach(ExistingProperties.Add);
                        mPropertiesLoaded = true;
                        OnDataLoaded();

                    };
                    cmsWebServiceClient.GetAllMobilePlantPropertiesAsync();
                    break;
                case CommonUtils.EquipmentPropertyType.PipeProperty:
                    cmsWebServiceClient.GetAllPipePropertiesCompleted += (s, e) =>
//.........这里部分代码省略.........
开发者ID:barrett2474,项目名称:CMS2,代码行数:101,代码来源:AddEditEquipmentPropertyViewModel.cs


注:本文中的CmsWebServiceClient.GetAllInterlockPropertiesAsync方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。