本文整理汇总了C#中CmsWebServiceClient.GetMobilePlantComponentTypesAsync方法的典型用法代码示例。如果您正苦于以下问题:C# CmsWebServiceClient.GetMobilePlantComponentTypesAsync方法的具体用法?C# CmsWebServiceClient.GetMobilePlantComponentTypesAsync怎么用?C# CmsWebServiceClient.GetMobilePlantComponentTypesAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CmsWebServiceClient
的用法示例。
在下文中一共展示了CmsWebServiceClient.GetMobilePlantComponentTypesAsync方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LoadComponentTypes
private void LoadComponentTypes(NodeView expandedNode)
{
CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
EventHandler<GetMobilePlantComponentTypesCompletedEventArgs> fetchCompleted = null;
fetchCompleted = (s, eventArgs) =>
{
List<MobilePlantComponentType> componentTypes = eventArgs.Result;
if (componentTypes != null)
{
foreach (MobilePlantComponentType componentType in componentTypes)
{
NodeView child = new NodeView(expandedNode)
{
Id = componentType.Id,
Name = componentType.Name,
Description = componentType.Description,
Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
Type = NodeType.MobilePlantComponentType,
HasChildren = true,
SortField = componentType.Ordinal.ToString()
};
expandedNode.Children.Add(child);
}
Utils.HideSpinner(expandedNode);
expandedNode.Sort();
}
cmsWebServiceClient.GetMobilePlantComponentTypesCompleted -= fetchCompleted;
};
cmsWebServiceClient.GetMobilePlantComponentTypesCompleted += fetchCompleted;
cmsWebServiceClient.GetMobilePlantComponentTypesAsync();
}
示例2: GetMobilePlantComponentTypes
public static Task<List<MobilePlantComponentType>> GetMobilePlantComponentTypes()
{
var task = new TaskCompletionSource<List<MobilePlantComponentType>>();
var cee = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
cee.GetMobilePlantComponentTypesCompleted += (s, e) => task.SetResult(e.Result);
cee.GetMobilePlantComponentTypesAsync();
return task.Task;
}
示例3: Initialize
private void Initialize()
{
CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
cmsWebServiceClient.GetMobilePlantComponentTypesCompleted +=
(s, e) =>
{
mMobilePlantComponentTypes = e.Result;
if (mMobilePlantComponent.MobilePlantComponentType != null)
{
SelectedType = (from x in Types where x.Id == mMobilePlantComponent.MobilePlantComponentTypeId select x).FirstOrDefault();
}
Loaded();
};
cmsWebServiceClient.GetMobilePlantComponentTypesAsync();
OkButtonCommand = new DelegateCommand<object>(OkButtonHander, CanModify);
CancelButtonCommand = new DelegateCommand<object>(CancelButtonHander, x => true);
}