本文整理汇总了C#中CmsWebServiceClient.GetMobilePlantTypesAsync方法的典型用法代码示例。如果您正苦于以下问题:C# CmsWebServiceClient.GetMobilePlantTypesAsync方法的具体用法?C# CmsWebServiceClient.GetMobilePlantTypesAsync怎么用?C# CmsWebServiceClient.GetMobilePlantTypesAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CmsWebServiceClient
的用法示例。
在下文中一共展示了CmsWebServiceClient.GetMobilePlantTypesAsync方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MobilePlantControlViewModel
public MobilePlantControlViewModel(int equipmentId)
{
CompositionInitializer.SatisfyImports(this);
SaveButtonCommand = new DelegateCommand<object>(SaveButtonHandler, CanModify);
RemoveButtonCommand = new DelegateCommand<object>(RemoveButtonHandler, CanDelete);
ExpiryPickerButton = new DelegateCommand<object>(ExpiryButtonHandler, CanDelete);
CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
cmsWebServiceClient.GetMobilePlantCompleted += cmsWebServiceClient_GetMobilePlantCompleted;
cmsWebServiceClient.GetMobilePlantAsync(equipmentId);
cmsWebServiceClient.GetMobilePlantTypesCompleted += cmsWebServiceClient_GetMobilePlantTypesCompleted;
cmsWebServiceClient.GetMobilePlantTypesAsync(false);
//MobileHirers
cmsWebServiceClient.GetMobileHirersCompleted += cmsWebServiceClient_GetMobileHirersCompleted;
cmsWebServiceClient.GetMobileHirersAsync();
//Owners
cmsWebServiceClient.GetMobileOwnersCompleted += cmsWebServiceClient_GetMobileOwnersCompleted;
cmsWebServiceClient.GetMobileOwnersAsync();
cmsWebServiceClient.GetUpperEquipmentsCompleted += cmsWebServiceClient_GetUpperEquipmentsCompleted;
cmsWebServiceClient.GetUpperEquipmentsAsync();
Areas = new ObservableCollection<Area>(from x in CMS.Cache.Areas where x.IsActive && x.SiteId == CMS.AppSetting.DefaultSiteId select x);
}
示例2: AddMobilePlantViewModel
public AddMobilePlantViewModel()
{
CompositionInitializer.SatisfyImports(this);
mMobilePlant = new MobilePlant();
CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
//MobileHirers
cmsWebServiceClient.GetMobileHirersCompleted += cmsWebServiceClient_GetMobileHirersCompleted;
cmsWebServiceClient.GetMobileHirersAsync();
//Owners
cmsWebServiceClient.GetMobileOwnersCompleted += cmsWebServiceClient_GetMobileOwnersCompleted;
cmsWebServiceClient.GetMobileOwnersAsync();
//Types
cmsWebServiceClient.GetMobilePlantTypesCompleted += cmsWebServiceClient_GetMobilePlantTypesCompleted;
cmsWebServiceClient.GetMobilePlantTypesAsync();
Areas = new ObservableCollection<Area>(from x in CMS.Cache.Areas where x.IsActive && x.SiteId == CMS.AppSetting.DefaultSiteId select x);
OkButtonCommand = new DelegateCommand<object>(OkButtonHander, CanExecuteOkButtonHandler);
CancelButtonCommand = new DelegateCommand<object>(CancelButtonHander, x => true);
}
示例3: GetMobilePlantTypes
public static Task<List<MobilePlantType>> GetMobilePlantTypes()
{
var task = new TaskCompletionSource<List<MobilePlantType>>();
var cee = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
cee.GetMobilePlantTypesCompleted += (s, e) => task.SetResult(e.Result);
cee.GetMobilePlantTypesAsync(false);
return task.Task;
}
示例4: LoadMobilePlantTypes
private void LoadMobilePlantTypes(NodeView expandedNode)
{
CmsWebServiceClient cmsWebServiceClient = new CmsWebServiceClient(Utils.WcfBinding, Utils.WcfEndPoint);
EventHandler<GetMobilePlantTypesCompletedEventArgs> fetchCompleted = null;
fetchCompleted = (s, eventArgs) =>
{
List<MobilePlantType> mobileTypes = eventArgs.Result as List<MobilePlantType>;
foreach (MobilePlantType mobileType in mobileTypes)
{
NodeView child = new NodeView(expandedNode)
{
Id = mobileType.Id,
Name = mobileType.Name,
Description = mobileType.Description,
Icon = "/CmsEquipmentDatabase;component/Images/Configuration.png",
Type = NodeType.MobilePlantTypeNode,
SortField = mobileType.Ordinal.ToString(),
IsActive = mobileType.IsActive,
HasChildren = false
};
expandedNode.Children.Add(child);
cmsWebServiceClient.GetMobilePlantTypesCompleted -= fetchCompleted;
}
expandedNode.Sort(true);
};
cmsWebServiceClient.GetMobilePlantTypesCompleted += fetchCompleted;
cmsWebServiceClient.GetMobilePlantTypesAsync();
}