Click here to Skip to main content
15,896,727 members
Articles / Operating Systems / Windows

Debugging WCF Apps

Rate me:
Please Sign up or sign in to vote.
4.59/5 (22 votes)
20 Jan 2007CPOL13 min read 93.4K   587   54  
Exploring diagnostic utilities for WCF
namespace WCFClient
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.textVal1 = new System.Windows.Forms.TextBox();
            this.textVal2 = new System.Windows.Forms.TextBox();
            this.textResult = new System.Windows.Forms.TextBox();
            this.buttonSend = new System.Windows.Forms.Button();
            this.comboOperation = new System.Windows.Forms.ComboBox();
            this.label1 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // textVal1
            // 
            this.textVal1.Location = new System.Drawing.Point(12, 15);
            this.textVal1.Name = "textVal1";
            this.textVal1.Size = new System.Drawing.Size(62, 20);
            this.textVal1.TabIndex = 4;
            // 
            // textVal2
            // 
            this.textVal2.Location = new System.Drawing.Point(12, 44);
            this.textVal2.Name = "textVal2";
            this.textVal2.Size = new System.Drawing.Size(62, 20);
            this.textVal2.TabIndex = 5;
            // 
            // textResult
            // 
            this.textResult.Location = new System.Drawing.Point(12, 89);
            this.textResult.Name = "textResult";
            this.textResult.ReadOnly = true;
            this.textResult.Size = new System.Drawing.Size(62, 20);
            this.textResult.TabIndex = 6;
            // 
            // buttonSend
            // 
            this.buttonSend.Location = new System.Drawing.Point(156, 89);
            this.buttonSend.Name = "buttonSend";
            this.buttonSend.Size = new System.Drawing.Size(75, 23);
            this.buttonSend.TabIndex = 7;
            this.buttonSend.Text = "Send";
            this.buttonSend.UseVisualStyleBackColor = true;
            this.buttonSend.Click += new System.EventHandler(this.buttonSend_Click);
            // 
            // comboOperation
            // 
            this.comboOperation.FormattingEnabled = true;
            this.comboOperation.Location = new System.Drawing.Point(80, 62);
            this.comboOperation.Name = "comboOperation";
            this.comboOperation.Size = new System.Drawing.Size(78, 21);
            this.comboOperation.TabIndex = 8;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(81, 43);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(53, 13);
            this.label1.TabIndex = 9;
            this.label1.Text = "Operation";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(269, 132);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.comboOperation);
            this.Controls.Add(this.buttonSend);
            this.Controls.Add(this.textResult);
            this.Controls.Add(this.textVal2);
            this.Controls.Add(this.textVal1);
            this.Name = "Form1";
            this.Text = "Client";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox textVal1;
        private System.Windows.Forms.TextBox textVal2;
        private System.Windows.Forms.TextBox textResult;
        private System.Windows.Forms.Button buttonSend;
        private System.Windows.Forms.ComboBox comboOperation;
        private System.Windows.Forms.Label label1;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions