UniqueId.TryGetGuid 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
TryGetGuid(Guid) | |
TryGetGuid(Byte[], Int32) |
TryGetGuid(Guid)
- Source:
- UniqueId.cs
- Source:
- UniqueId.cs
- Source:
- 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)
- Source:
- UniqueId.cs
- Source:
- UniqueId.cs
- Source:
- 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
方法。