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