IPAddress.ScopeId 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
IPv6 주소 범위 식별자를 가져오거나 설정합니다.
public:
property long ScopeId { long get(); void set(long value); };
public long ScopeId { get; set; }
member this.ScopeId : int64 with get, set
Public Property ScopeId As Long
속성 값
주소의 범위를 지정하는 정수(Long)입니다.
예외
AddressFamily
=
InterNetwork
.
예제
// Display the type of address family supported by the server. If the
// server is IPv6-enabled this value is: InterNetworkV6. If the server
// is also IPv4-enabled there will be an additional value of InterNetwork.
Console::WriteLine( "AddressFamily: {0}", curAdd->AddressFamily );
// Display the ScopeId property in case of IPV6 addresses.
if ( curAdd->AddressFamily.ToString() == ProtocolFamily::InterNetworkV6.ToString() )
Console::WriteLine( "Scope Id: {0}", curAdd->ScopeId );
// Display the type of address family supported by the server. If the
// server is IPv6-enabled this value is: InterNetworkV6. If the server
// is also IPv4-enabled there will be an additional value of InterNetwork.
Console.WriteLine("AddressFamily: " + curAdd.AddressFamily.ToString());
// Display the ScopeId property in case of IPV6 addresses.
if(curAdd.AddressFamily.ToString() == ProtocolFamily.InterNetworkV6.ToString())
Console.WriteLine("Scope Id: " + curAdd.ScopeId.ToString());
' Display the type of address family supported by the server. If the
' server is IPv6-enabled this value is: InterNetworkV6. If the server
' is also IPv4-enabled there will be an additional value of InterNetwork.
Console.WriteLine(("AddressFamily: " + curAdd.AddressFamily.ToString()))
' Display the ScopeId property in case of IPV6 addresses.
If curAdd.AddressFamily.ToString() = ProtocolFamily.InterNetworkV6.ToString() Then
Console.WriteLine(("Scope Id: " + curAdd.ScopeId.ToString()))
End If
설명
사용되는 컨텍스트에 따라 변경 내용의 ScopeId 의미입니다.
- 링크-로컬 주소입니다. 별도의 링크에 연결된 여러 인터페이스가 있는 호스트에서 동일한 링크-로컬 주소를 여러 인터페이스에 할당할 수 있습니다. 이 모호성을 제거하기 위해 범위 식별자를 사용하여 메시지가 교환되는 인터페이스를 지정합니다.
참고
FP(서식 접두사) FE80으로 식별되는 링크 로컬 주소는 동일한 링크의 인접 노드와 통신할 때 노드에서 사용됩니다.
- 사이트-로컬 주소. 호스트는 여러 사이트에 연결할 수 있습니다. 이 경우 범위 식별자는 통신할 특정 사이트를 나타내는 데 사용됩니다.
참고
FP(서식 접두사) FEC0로 식별되는 사이트 로컬 주소는 프라이빗 인트라넷에서 통신할 때 노드에서 사용됩니다.
주소를 사용하여 를 지정 ScopeId
하는 데 사용되는 표기법은 입니다 Address%ScopeId
. 예를 들면 FE80::5EFE:192.168.41.30%2.
과 같습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET