UniqueId.TryGetGuid 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
TryGetGuid(Guid) | |
TryGetGuid(Byte[], Int32) |
TryGetGuid(Guid)
- 來源:
- UniqueId.cs
- 來源:
- UniqueId.cs
- 來源:
- UniqueId.cs
public:
bool TryGetGuid([Runtime::InteropServices::Out] Guid % guid);
public bool TryGetGuid (out Guid guid);
member this.TryGetGuid : Guid -> bool
Public Function TryGetGuid (ByRef guid As Guid) As Boolean
參數
傳回
如果 UniqueId 表示 Guid,則為 true
,否則為 false
。
例外狀況
buffer
為 null
。
buffer
和 offset
提供 16 個以下的有效位元組。
適用於
TryGetGuid(Byte[], Int32)
- 來源:
- UniqueId.cs
- 來源:
- UniqueId.cs
- 來源:
- UniqueId.cs
public:
bool TryGetGuid(cli::array <System::Byte> ^ buffer, int offset);
public bool TryGetGuid (byte[] buffer, int offset);
[System.Security.SecurityCritical]
[System.Security.SecurityTreatAsSafe]
public bool TryGetGuid (byte[] buffer, int offset);
member this.TryGetGuid : byte[] * int -> bool
[<System.Security.SecurityCritical>]
[<System.Security.SecurityTreatAsSafe>]
member this.TryGetGuid : byte[] * int -> bool
Public Function TryGetGuid (buffer As Byte(), offset As Integer) As Boolean
參數
傳回
如果儲存在這個 true
執行個體中的值是 UniqueId,則為 Guid,否則為 false
。
- 屬性
例外狀況
buffer
為 null
。
offset
小於零或大於陣列長度。
buffer
和 offset
提供 16 個以下的有效位元組。
備註
這個方法是 unsafe
。