Click here to Skip to main content
15,905,148 members
Home / Discussions / C#
   

C#

 
GeneralRe: Custom Listview Pin
Heath Stewart4-May-04 2:53
protectorHeath Stewart4-May-04 2:53 
Generalsetting up the bootstrapping sample Pin
kornstyle3-May-04 5:08
kornstyle3-May-04 5:08 
GeneralRe: setting up the bootstrapping sample Pin
Heath Stewart3-May-04 10:11
protectorHeath Stewart3-May-04 10:11 
GeneralRe: setting up the bootstrapping sample Pin
kornstyle3-May-04 11:03
kornstyle3-May-04 11:03 
GeneralRe: setting up the bootstrapping sample Pin
Heath Stewart4-May-04 8:13
protectorHeath Stewart4-May-04 8:13 
GeneralRe: setting up the bootstrapping sample Pin
kornstyle5-May-04 11:00
kornstyle5-May-04 11:00 
GeneralPermissions for Registry Entry Pin
Nagendra Kamath K3-May-04 4:27
Nagendra Kamath K3-May-04 4:27 
GeneralRe: Permissions for Registry Entry Pin
Heath Stewart3-May-04 4:38
protectorHeath Stewart3-May-04 4:38 
QuestionMulltiLine DataGrid Header in C#? Pin
nrg3-May-04 4:10
nrg3-May-04 4:10 
Generalsetting time and date Pin
Amirjalaly3-May-04 3:47
Amirjalaly3-May-04 3:47 
GeneralRe: setting time and date Pin
Heath Stewart3-May-04 4:08
protectorHeath Stewart3-May-04 4:08 
GeneralC# sp_attach_db execute Pin
betterc3-May-04 3:28
betterc3-May-04 3:28 
GeneralRe: C# sp_attach_db execute Pin
Heath Stewart3-May-04 4:00
protectorHeath Stewart3-May-04 4:00 
GeneralRe: C# sp_attach_db execute Pin
betterc3-May-04 4:26
betterc3-May-04 4:26 
GeneralRe: C# sp_attach_db execute Pin
Michael P Butler3-May-04 4:34
Michael P Butler3-May-04 4:34 
GeneralRe: C# sp_attach_db execute Pin
betterc3-May-04 4:35
betterc3-May-04 4:35 
GeneralRe: C# sp_attach_db execute Pin
Heath Stewart3-May-04 4:36
protectorHeath Stewart3-May-04 4:36 
GeneralIPv6 help Pin
bouli3-May-04 2:10
bouli3-May-04 2:10 
GeneralRe: IPv6 help Pin
Jeff Varszegi3-May-04 2:29
professionalJeff Varszegi3-May-04 2:29 
GeneralRe: IPv6 help Pin
bouli3-May-04 2:43
bouli3-May-04 2:43 
GeneralRe: IPv6 help Pin
Heath Stewart3-May-04 2:45
protectorHeath Stewart3-May-04 2:45 
GeneralRe: IPv6 help Pin
bouli3-May-04 2:51
bouli3-May-04 2:51 
GeneralRe: IPv6 help Pin
Heath Stewart3-May-04 3:06
protectorHeath Stewart3-May-04 3:06 
Man, you really should learn about IPv6 addresses before you start digging into them. ::1 is the interface address. 0 would be the scope. Try running my little sample code on your machine.

Also, "::" in an IPv6 address masks out consecutive zeros, so it doesn't always include 8 32-bit integers.

The point is, you don't need to worry about all this. Use something like I did in my sample app and just use one of the interfaces returned in the IPHostEntry.AddressList property. It doesn't matter which one you use, they will all work. If all it returns is IPv6 (which won't be happening for several years at least), then you'd connect to that one. The .NET classes you'd be using really don't care which you use in many cases.

The ability of an app to use IPv6 is just the ability to recognize and connect using IPv6 addresses, but it doesn't mean that an app must use it. Use whatever address is return, whether it's the 1st address in the list or the last. It doesn't really matter.

 

Microsoft MVP, Visual C#
My Articles
GeneralRe: IPv6 help Pin
Heath Stewart3-May-04 2:44
protectorHeath Stewart3-May-04 2:44 
GeneralRe: IPv6 help Pin
bouli3-May-04 3:18
bouli3-May-04 3:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.