Wrox Programmer Forums
Go Back   Wrox Programmer Forums > C# and C > C# 1.0 > C#
|
C# Programming questions specific to the Microsoft C# language. See also the forum Beginning Visual C# to discuss that specific Wrox book and code.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the C# section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 26th, 2007, 11:05 AM
Registered User
 
Join Date: Jul 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Parameter Count Exception

Hi
I have designed a Server & Client (both in C#).
On both ends I am using Socket.Send(byte[] buffer); API to send data

My Server & Client have same Wrapper to this API. The Server works well but Client Crashes every time Send() API executes.

The Exception is TargetParameterCountException, and Message is Parameter count Mismatch

I used this One Argument Overload......as well as tried the other overload Send(byte[] buffer, SocketFlags.None)

But Problem persists....

My Wrapper is very simple

Public void SendMessage(String msg)
{
     if(ClientSocket!=null)
      {
           if(ClientSocket.Connected)
            {
                ClientSocket.Send(Encoding.ASCII.GetBytes(msg));
            }
      }
}

Admin........and Anyone.......Can u Help






Similar Threads
Thread Thread Starter Forum Replies Last Post
is there any in built function to count page count g.tamilselvan MySQL 1 February 15th, 2006 07:43 AM
Count, sum, count a value, return records CongoGrey Access 1 April 18th, 2005 02:25 PM
System.Reflection Error. Parameter count mismatch macupryk VB.NET 0 April 8th, 2005 07:18 PM
Checkboxes and the Count Parameter srotondo Javascript How-To 1 November 10th, 2004 05:38 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.