本文整理汇总了C#中CmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync方法的典型用法代码示例。如果您正苦于以下问题:C# CmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync方法的具体用法?C# CmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync怎么用?C# CmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CmsWebServiceClient
的用法示例。
在下文中一共展示了CmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetControlSystemComponentTypeTestingProperties
public static Task<List<ControlSystemComponentTypeTestingProperty>> GetControlSystemComponentTypeTestingProperties(int componentTypeId)
{
var task = new TaskCompletionSource<List<ControlSystemComponentTypeTestingProperty>>();
var cee = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
cee.GetControlSystemComponentTypeTestingPropertiesCompleted += (s, e) => task.SetResult(e.Result);
cee.GetControlSystemComponentTypeTestingPropertiesAsync(componentTypeId);
return task.Task;
}
示例2: LoadComponentTypeTests
private void LoadComponentTypeTests(NodeView expandedNode)
{
var cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
EventHandler<GetControlSystemComponentTypeTestingPropertiesCompletedEventArgs> fetchCompleted = null;
fetchCompleted = (s, eventArgs) =>
{
var componentTypeTestingProperties = eventArgs.Result;
componentTypeTestingProperties = componentTypeTestingProperties.OrderBy(x => x.Ordinal).ThenBy(x => x.GroupOrdinal).ToList();
foreach (var controlSystemEquipmentComponentProperty in componentTypeTestingProperties)
{
if (controlSystemEquipmentComponentProperty.ComponentTypeGroupId.HasValue)
{
var childGroup = expandedNode.Children.FirstOrDefault(x => x.GroupId == controlSystemEquipmentComponentProperty.ComponentTypeGroupId.Value);
if (childGroup == null)
{
childGroup = new NodeView(expandedNode)
{
Id = controlSystemEquipmentComponentProperty.Id,
GroupId = controlSystemEquipmentComponentProperty.ComponentTypeGroupId.Value,
Name = controlSystemEquipmentComponentProperty.ComponentTypeGroup.Name,
Description = controlSystemEquipmentComponentProperty.ComponentTypeGroup.Description,
Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
Type = NodeType.ComponentTypeGroup,
HasChildren = true,
SortField = controlSystemEquipmentComponentProperty.Ordinal.ToString()
};
expandedNode.Children.Add(childGroup);
}
else
{
Utils.HideSpinner(childGroup);
}
if (controlSystemEquipmentComponentProperty.TestPropertyId.HasValue)
{
var child = new NodeView(childGroup)
{
Id = controlSystemEquipmentComponentProperty.Id,
Name = controlSystemEquipmentComponentProperty.ControlSystemComponentTestingProperty.Name,
Description = controlSystemEquipmentComponentProperty.ControlSystemComponentTestingProperty.Description,
Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
Type = NodeType.ComponentTypeTest,
HasChildren = false,
SortField = controlSystemEquipmentComponentProperty.GroupOrdinal.ToString()
};
childGroup.Children.Add(child);
}
}
else
{
var child = new NodeView(expandedNode)
{
Id = controlSystemEquipmentComponentProperty.Id,
Name = controlSystemEquipmentComponentProperty.ControlSystemComponentTestingProperty.Name,
Description = controlSystemEquipmentComponentProperty.ControlSystemComponentTestingProperty.Description,
Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
Type = NodeType.ComponentTypeTest,
HasChildren = false,
SortField = controlSystemEquipmentComponentProperty.Ordinal.ToString()
};
expandedNode.Children.Add(child);
}
}
Utils.HideSpinner(expandedNode);
cmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesCompleted -= fetchCompleted;
};
cmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesCompleted += fetchCompleted;
cmsWebServiceClient.GetControlSystemComponentTypeTestingPropertiesAsync(expandedNode.Parent.Id);
}