bitmessage.network.Broadcast.Send C# (CSharp) Method

Send() private method

private Send ( ) : void
return void
        internal void Send()
        {
            Payload p = GetPayload();
            p.SaveAsync(_bm);
        }

Usage Example

コード例 #1
0
 public void SendBroadcast(string fromAddress, string subject, string body, int encodingType = 2)
 {
     var broadcast = new Broadcast(this)
     {
         Key = fromAddress,
         Body = body,
         Subject = subject
     };
     broadcast.SaveAsync(DB);
     broadcast.Send();
 }