Binds a user-defined value to a parameter object.
Inheritance: System.Web.UI.WebControls.Parameter
コード例 #1
0
ファイル: CustomParameter.cs プロジェクト: netTiers/netTiers
		/// <summary>
		/// Initializes a new instance of the CustomParameter class with
		/// the values of the instance specified by the original parameter.
		/// </summary>
		/// <param name="original">A CustomParameter from which the current instance is initialized.</param>
		public CustomParameter(CustomParameter original)
			: base(original)
		{
			if ( original != null )
			{
				Value = original.Value;
			}
		}
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the CustomParameter class with
 /// the values of the instance specified by the original parameter.
 /// </summary>
 /// <param name="original">A CustomParameter from which the current instance is initialized.</param>
 public CustomParameter(CustomParameter original)
     : base(original)
 {
     if (original != null)
     {
         Value = original.Value;
     }
 }