An Client Message Inspector that sets cookies for the service call.
Inheritance: IClientMessageInspector
		/// <summary>
		/// Injects the user agent into the service request.
		/// </summary>
		/// <param name="endpoint">The enpoint of the service for which to set the user-agent.</param>
		/// <param name="clientRuntime">The client runtime.</param>
		public override void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
		{
			base.ApplyClientBehavior(endpoint, clientRuntime);
			CookieMessageInspector cmiInspector = new CookieMessageInspector(m_dicAuthenticationCookies);
			clientRuntime.MessageInspectors.Add(cmiInspector);

		}
        /// <summary>
        /// Injects the user agent into the service request.
        /// </summary>
        /// <param name="endpoint">The enpoint of the service for which to set the user-agent.</param>
        /// <param name="clientRuntime">The client runtime.</param>
        public override void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
        {
            base.ApplyClientBehavior(endpoint, clientRuntime);
            CookieMessageInspector cmiInspector = new CookieMessageInspector(m_dicAuthenticationCookies);

            clientRuntime.MessageInspectors.Add(cmiInspector);
        }