System.Web.UI.WebControls.TextBox.LoadPostData C# (CSharp) 메소드

LoadPostData() 보호된 메소드

protected LoadPostData ( string postDataKey, NameValueCollection postCollection ) : bool
postDataKey string
postCollection System.Collections.Specialized.NameValueCollection
리턴 bool
		bool LoadPostData (string postDataKey, NameValueCollection postCollection)
		{
#if NET_2_0
			ValidateEvent (postDataKey, String.Empty);
#endif
			if (Text != postCollection [postDataKey]) {
				Text = postCollection [postDataKey];
				return true;
			}
			
			return false;
		}