Secret.WriteSecretIntoBuffer 方法

定义

重载

WriteSecretIntoBuffer(ArraySegment<Byte>)

将机密值写入指定的缓冲区。

WriteSecretIntoBuffer(Byte*, Int32)

将机密值写入指定的缓冲区。

WriteSecretIntoBuffer(ArraySegment<Byte>)

Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs

将机密值写入指定的缓冲区。

public:
 virtual void WriteSecretIntoBuffer(ArraySegment<System::Byte> buffer);
public void WriteSecretIntoBuffer(ArraySegment<byte> buffer);
abstract member WriteSecretIntoBuffer : ArraySegment<byte> -> unit
override this.WriteSecretIntoBuffer : ArraySegment<byte> -> unit
Public Sub WriteSecretIntoBuffer (buffer As ArraySegment(Of Byte))

参数

buffer
ArraySegment<Byte>

实现

注解

缓冲区大小必须与机密值的长度完全匹配。

适用于

WriteSecretIntoBuffer(Byte*, Int32)

Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs
Source:
Secret.cs

将机密值写入指定的缓冲区。

public:
 void WriteSecretIntoBuffer(System::Byte* buffer, int bufferLength);
public void WriteSecretIntoBuffer(byte* buffer, int bufferLength);
member this.WriteSecretIntoBuffer : nativeptr<byte> * int -> unit

参数

buffer
Byte*

要在其中写入机密值的缓冲区。

bufferLength
Int32

所提供缓冲区的大小 () 字节数。

注解

“bufferLength”参数必须与机密值的长度完全匹配。

适用于