IPNetwork.TryFormat 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryFormat(Span<Char>, Int32) |
嘗試將的 CIDR 表示法寫入 IPNetwork指定的 |
TryFormat(Span<Byte>, Int32) |
嘗試將 的 CIDR 表示法寫入 IPNetwork指定的 |
TryFormat(Span<Char>, Int32)
- 來源:
- IPNetwork.cs
- 來源:
- IPNetwork.cs
嘗試將的 CIDR 表示法寫入 IPNetwork指定的 destination
範圍,並傳回值,指出作業是否成功。
public:
bool TryFormat(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryFormat (Span<char> destination, out int charsWritten);
member this.TryFormat : Span<char> * int -> bool
Public Function TryFormat (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean
參數
- charsWritten
- Int32
當這個方法傳回時,會包含寫入 至 destination
的字元數。
傳回
true
如果格式設定成功,則為 ;否則 false
為 。
適用於
TryFormat(Span<Byte>, Int32)
- 來源:
- IPNetwork.cs
- 來源:
- IPNetwork.cs
嘗試將 的 CIDR 表示法寫入 IPNetwork指定的 utf8Destination
UTF-8 範圍,並傳回值,指出作業是否成功。
public:
bool TryFormat(Span<System::Byte> utf8Destination, [Runtime::InteropServices::Out] int % bytesWritten);
public bool TryFormat (Span<byte> utf8Destination, out int bytesWritten);
member this.TryFormat : Span<byte> * int -> bool
Public Function TryFormat (utf8Destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean
參數
- bytesWritten
- Int32
當這個方法傳回時,會包含寫入 至 utf8Destination
的位元組數目。
傳回
true
如果格式設定成功,則為 ;否則 false
為 。