Page 1 of 1

Networking requests

PostPosted: Tue Nov 26, 2013 1:52 am
by Sovietaced
I don't see anything built into cobra for using sockets. Is there something I am unaware of? If nothing exists how would one go about implementing it?

Re: Networking requests

PostPosted: Tue Nov 26, 2013 10:32 am
by Charles
Cobra runs on .NET and leverages both its standard library as well as 3rd party libraries. So when looking for things like this, you can search for ".NET foo" and often get productive results. For example:

https://www.google.com/search?q=.net+sockets

Also, there is a search box in the upper right corner. Entering "sockets" there gives this discussion thread:

viewtopic.php?f=4&t=576

HTH

Re: Networking requests

PostPosted: Tue Nov 26, 2013 2:24 pm
by Sovietaced
Charles wrote:Cobra runs on .NET and leverages both its standard library as well as 3rd party libraries. So when looking for things like this, you can search for ".NET foo" and often get productive results. For example:

https://www.google.com/search?q=.net+sockets

Also, there is a search box in the upper right corner. Entering "sockets" there gives this discussion thread:

viewtopic.php?f=4&t=576

HTH


Thanks alot bud. I've never really known anything about .NET so I wasn't entire sure about the relationship between cobra and .NET but its starting to make sense now.