'If' statement on my client side is ignored by my function, even though it holds trueHow do access a secure website within a sharepoint webpart?How to properly call an external WCF Service from SharePoint 2010?how to do multiple stream.writes and reads on a single socketDynamics CRM Cause CommunicationExceptionPowerShell + HttpWebRequest throws exceptionWCF service - connection was forcibly closed by the remote hostA call to SSPI failed, see inner exception. ---> System.ComponentModel.Win32Exception: The specified data could not be decryptedError while fetching data from Office365 using EWS.dllSenda Data in Socket C#, format EBCDICHandle “Error while copying content to a stream” Exception

Closest Proximity of Oceans to Freshwater Springs

How did Lefschetz do mathematics without hands?

What verb for taking advantage fits in "I don't want to ________ on the friendship"?

Why did NASA wet the road in front of the Space Shuttle crawler?

Why do I need two parameters in an HTTP parameter pollution attack?

Find the radius of the hoop.

How do I ensure my employees don't abuse my flexible work hours policy?

What game is this character in the Pixels movie from?

How to plan the font size in a fiction?

Prime parity peregrination

What exactly did Ant-Man see that made him say that their plan worked?

Why is Japan trying to have a better relationship with Iran?

Do home values typically rise and fall at a consistent percent?

Do launching rockets produce a sonic boom?

Was it really unprofessional of me to leave without asking for a raise first?

How to securely dispose of a smartphone?

What will happen if I checked in for another room in the same hotel, but not for the booked one?

Is there any way to adjust the component values to get 5V output?

Are gliders susceptible to bird strikes?

Who are these Discworld wizards from this picture?

Just graduated with a master’s degree, but I internalised nothing

Movie with Zoltar in a trailer park named Paradise and a boy playing a video game then being recruited by aliens to fight in space

How can I deal with extreme temperatures in a hotel room?

Bin Packing with Relational Penalization



'If' statement on my client side is ignored by my function, even though it holds true


How do access a secure website within a sharepoint webpart?How to properly call an external WCF Service from SharePoint 2010?how to do multiple stream.writes and reads on a single socketDynamics CRM Cause CommunicationExceptionPowerShell + HttpWebRequest throws exceptionWCF service - connection was forcibly closed by the remote hostA call to SSPI failed, see inner exception. ---> System.ComponentModel.Win32Exception: The specified data could not be decryptedError while fetching data from Office365 using EWS.dllSenda Data in Socket C#, format EBCDICHandle “Error while copying content to a stream” Exception






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















public static void SendMessage(RobotProperties properties)

string output = JsonConvert.SerializeObject(properties);
// Translate the passed message into ASCII and store it as a Byte array.
Byte[] data = Encoding.UTF8.GetBytes(output);

// Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length);

Console.WriteLine("Sent:n 0", data);

// Receive the TcpServer.response.
// Buffer to store the response bytes.
data = new Byte[1000];

// Read the TcpServer response bytes into data buffer. stream.Read returns the number of bytes read which are stored into the bytes variable.
Int32 bytes = stream.Read(data, 0, data.Length);

string dataReceived = Encoding.Default.GetString(data);
Console.WriteLine("This was received: 0", dataReceived);

if (dataReceived.Equals("Received") && count<50)

Console.WriteLine("Check if it gets here");
properties.x -= 1;
count++;
SendMessage(properties);




The count is initialized to 0. Although the client does receive the data i.e 'Received' and count is below 50, it doesn't go within the if statement and make the recursive call. What might be going wrong ?










share|improve this question

















  • 1





    Case-sensitivity?

    – Risto M
    Mar 25 at 14:03











  • Does dataReceived equal “Received” or “received”?

    – trix
    Mar 25 at 14:03






  • 1





    Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

    – Jeroen Mostert
    Mar 25 at 14:04







  • 1





    Any spaces at the end of "Received" that you may not be seeing?

    – PaulF
    Mar 25 at 14:04






  • 1





    There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

    – Olivier Jacot-Descombes
    Mar 25 at 14:07


















0















public static void SendMessage(RobotProperties properties)

string output = JsonConvert.SerializeObject(properties);
// Translate the passed message into ASCII and store it as a Byte array.
Byte[] data = Encoding.UTF8.GetBytes(output);

// Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length);

Console.WriteLine("Sent:n 0", data);

// Receive the TcpServer.response.
// Buffer to store the response bytes.
data = new Byte[1000];

// Read the TcpServer response bytes into data buffer. stream.Read returns the number of bytes read which are stored into the bytes variable.
Int32 bytes = stream.Read(data, 0, data.Length);

string dataReceived = Encoding.Default.GetString(data);
Console.WriteLine("This was received: 0", dataReceived);

if (dataReceived.Equals("Received") && count<50)

Console.WriteLine("Check if it gets here");
properties.x -= 1;
count++;
SendMessage(properties);




The count is initialized to 0. Although the client does receive the data i.e 'Received' and count is below 50, it doesn't go within the if statement and make the recursive call. What might be going wrong ?










share|improve this question

















  • 1





    Case-sensitivity?

    – Risto M
    Mar 25 at 14:03











  • Does dataReceived equal “Received” or “received”?

    – trix
    Mar 25 at 14:03






  • 1





    Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

    – Jeroen Mostert
    Mar 25 at 14:04







  • 1





    Any spaces at the end of "Received" that you may not be seeing?

    – PaulF
    Mar 25 at 14:04






  • 1





    There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

    – Olivier Jacot-Descombes
    Mar 25 at 14:07














0












0








0








public static void SendMessage(RobotProperties properties)

string output = JsonConvert.SerializeObject(properties);
// Translate the passed message into ASCII and store it as a Byte array.
Byte[] data = Encoding.UTF8.GetBytes(output);

// Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length);

Console.WriteLine("Sent:n 0", data);

// Receive the TcpServer.response.
// Buffer to store the response bytes.
data = new Byte[1000];

// Read the TcpServer response bytes into data buffer. stream.Read returns the number of bytes read which are stored into the bytes variable.
Int32 bytes = stream.Read(data, 0, data.Length);

string dataReceived = Encoding.Default.GetString(data);
Console.WriteLine("This was received: 0", dataReceived);

if (dataReceived.Equals("Received") && count<50)

Console.WriteLine("Check if it gets here");
properties.x -= 1;
count++;
SendMessage(properties);




The count is initialized to 0. Although the client does receive the data i.e 'Received' and count is below 50, it doesn't go within the if statement and make the recursive call. What might be going wrong ?










share|improve this question














public static void SendMessage(RobotProperties properties)

string output = JsonConvert.SerializeObject(properties);
// Translate the passed message into ASCII and store it as a Byte array.
Byte[] data = Encoding.UTF8.GetBytes(output);

// Send the message to the connected TcpServer.
stream.Write(data, 0, data.Length);

Console.WriteLine("Sent:n 0", data);

// Receive the TcpServer.response.
// Buffer to store the response bytes.
data = new Byte[1000];

// Read the TcpServer response bytes into data buffer. stream.Read returns the number of bytes read which are stored into the bytes variable.
Int32 bytes = stream.Read(data, 0, data.Length);

string dataReceived = Encoding.Default.GetString(data);
Console.WriteLine("This was received: 0", dataReceived);

if (dataReceived.Equals("Received") && count<50)

Console.WriteLine("Check if it gets here");
properties.x -= 1;
count++;
SendMessage(properties);




The count is initialized to 0. Although the client does receive the data i.e 'Received' and count is below 50, it doesn't go within the if statement and make the recursive call. What might be going wrong ?







c#






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 25 at 14:00









Hassnain AliHassnain Ali

737 bronze badges




737 bronze badges







  • 1





    Case-sensitivity?

    – Risto M
    Mar 25 at 14:03











  • Does dataReceived equal “Received” or “received”?

    – trix
    Mar 25 at 14:03






  • 1





    Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

    – Jeroen Mostert
    Mar 25 at 14:04







  • 1





    Any spaces at the end of "Received" that you may not be seeing?

    – PaulF
    Mar 25 at 14:04






  • 1





    There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

    – Olivier Jacot-Descombes
    Mar 25 at 14:07













  • 1





    Case-sensitivity?

    – Risto M
    Mar 25 at 14:03











  • Does dataReceived equal “Received” or “received”?

    – trix
    Mar 25 at 14:03






  • 1





    Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

    – Jeroen Mostert
    Mar 25 at 14:04







  • 1





    Any spaces at the end of "Received" that you may not be seeing?

    – PaulF
    Mar 25 at 14:04






  • 1





    There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

    – Olivier Jacot-Descombes
    Mar 25 at 14:07








1




1





Case-sensitivity?

– Risto M
Mar 25 at 14:03





Case-sensitivity?

– Risto M
Mar 25 at 14:03













Does dataReceived equal “Received” or “received”?

– trix
Mar 25 at 14:03





Does dataReceived equal “Received” or “received”?

– trix
Mar 25 at 14:03




1




1





Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

– Jeroen Mostert
Mar 25 at 14:04






Hint: what does Encoding.Default.GetString(data).Length return? There is a reason for the return value of stream.Read.

– Jeroen Mostert
Mar 25 at 14:04





1




1





Any spaces at the end of "Received" that you may not be seeing?

– PaulF
Mar 25 at 14:04





Any spaces at the end of "Received" that you may not be seeing?

– PaulF
Mar 25 at 14:04




1




1





There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

– Olivier Jacot-Descombes
Mar 25 at 14:07






There is no reason to make a recursive call. Make a loop. Also, Debug your C# or Visual Basic .NET Core Hello World application using Visual Studio 2017.

– Olivier Jacot-Descombes
Mar 25 at 14:07













0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339549%2fif-statement-on-my-client-side-is-ignored-by-my-function-even-though-it-holds%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55339549%2fif-statement-on-my-client-side-is-ignored-by-my-function-even-though-it-holds%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해