⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 command.cs

📁 Microsoft Mobile Development Handbook的代码,有C#,VB,C++的
💻 CS
字号:
//===============================================================================
// Microsoft patterns & practices
// Mobile Client Software Factory - July 2006
//===============================================================================
// Copyright  Microsoft Corporation.  All rights reserved.
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY
// OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT
// LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
// FITNESS FOR A PARTICULAR PURPOSE.
//===============================================================================
// The example companies, organizations, products, domain names,
// e-mail addresses, logos, people, places, and events depicted
// herein are fictitious.  No association with any real company,
// organization, product, domain name, email address, logo, person,
// places, or events is intended or should be inferred.
//===============================================================================

using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;

namespace Microsoft.Practices.Mobile.DisconnectedAgent
{
	public class Command
	{
		object[] args;
		object targetObject;
		string commandName;

		/// <summary>
		/// Command constructor which creates a new command for the corresponding object, method name and
		/// with the given arguments.
		/// It's used from the RequestManager class to implement a command queue.
		/// </summary>
		/// <param name="target">Target object for the command.</param>
		/// <param name="commandName">Method name to be invoked.</param>
		/// <param name="args">Array of parameters to be used during the invoke.</param>
		public Command(object target, string commandName, params object[] args)
		{
			this.targetObject = target;
			this.commandName = commandName;
			this.args = args;
		}

		/// <summary>
		/// This method invokes the method with the command name using the parameteres.
		/// </summary>
		/// <returns>The result value of the method.</returns>
		public object Execute()
		{
			MethodInfo commandMethod = targetObject.GetType().GetMethod(commandName);
			return commandMethod.Invoke(targetObject, args);
		}

		/// <summary>
		/// Getter for the command method name to invoke.
		/// </summary>
		public string CommandName
		{
			get { return commandName; }
		}
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -