Secret.WriteSecretIntoBuffer Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| WriteSecretIntoBuffer(ArraySegment<Byte>) |
Writes the secret value to the specified buffer. |
| WriteSecretIntoBuffer(Byte*, Int32) |
Writes the secret value to the specified buffer. |
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
Writes the secret value to the specified buffer.
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))
Parameters
- buffer
- ArraySegment<Byte>
Implements
Remarks
The buffer size must exactly match the length of the secret value.
Applies to
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
Writes the secret value to the specified buffer.
public:
void WriteSecretIntoBuffer(System::Byte* buffer, int bufferLength);
public void WriteSecretIntoBuffer(byte* buffer, int bufferLength);
member this.WriteSecretIntoBuffer : nativeptr<byte> * int -> unit
Parameters
- buffer
- Byte*
The buffer into which to write the secret value.
- bufferLength
- Int32
The size (in bytes) of the provided buffer.
Remarks
The 'bufferLength' parameter must exactly match the length of the secret value.