dlech.SshAgentLib.BlobBuilder.GetBlob C# (CSharp) Метод

GetBlob() публичный Метод

Gets the resulting blob from the blob builder.
public GetBlob ( ) : byte[]
Результат byte[]
        public byte[] GetBlob()
        {
            return byteList.ToArray();
        }

Usage Example

Пример #1
0
 public void TestAddBytes()
 {
     BlobBuilder builder = new BlobBuilder();
       byte[] value = { 0, 1, 2, 3, 4, 5 };
       builder.AddBytes(value);
       Assert.That(builder.GetBlob(), Is.EqualTo(value));
 }
All Usage Examples Of dlech.SshAgentLib.BlobBuilder::GetBlob