Example #1
0
        public Help1Settings CreateCopy()
        {
            Help1Settings result = new Help1Settings();

            result.NavigatorCommand = NavigatorCommand;
            result.Url        = Url;
            result.Parameters = Parameters;

            return(result);
        }
Example #2
0
 public void CopyFrom(Help1Settings source)
 {
     this.NavigatorCommand = source.NavigatorCommand;
     this.Url        = source.Url;
     this.Parameters = source.Parameters;
 }