| | | 1 | | using Renci.SshNet.Common; |
| | | 2 | | |
| | | 3 | | namespace Renci.SshNet.Messages.Connection |
| | | 4 | | { |
| | | 5 | | /// <summary> |
| | | 6 | | /// Represents type specific information for channel request. |
| | | 7 | | /// </summary> |
| | | 8 | | public abstract class RequestInfo : SshData |
| | | 9 | | { |
| | | 10 | | /// <summary> |
| | | 11 | | /// Gets the name of the request. |
| | | 12 | | /// </summary> |
| | | 13 | | /// <value> |
| | | 14 | | /// The name of the request. |
| | | 15 | | /// </value> |
| | | 16 | | public abstract string RequestName { get; } |
| | | 17 | | |
| | | 18 | | /// <summary> |
| | | 19 | | /// Gets or sets a value indicating whether reply message is needed. |
| | | 20 | | /// </summary> |
| | | 21 | | /// <value> |
| | | 22 | | /// <see langword="true"/> if reply message is needed; otherwise, <see langword="false"/>. |
| | | 23 | | /// </value> |
| | 42369 | 24 | | public bool WantReply { get; protected set; } |
| | | 25 | | |
| | | 26 | | /// <summary> |
| | | 27 | | /// Gets the size of the message in bytes. |
| | | 28 | | /// </summary> |
| | | 29 | | /// <value> |
| | | 30 | | /// The size of the messages in bytes. |
| | | 31 | | /// </value> |
| | | 32 | | protected override int BufferCapacity |
| | | 33 | | { |
| | | 34 | | get |
| | 1706 | 35 | | { |
| | 1706 | 36 | | var capacity = base.BufferCapacity; |
| | 1706 | 37 | | capacity += 1; // WantReply |
| | 1706 | 38 | | return capacity; |
| | 1706 | 39 | | } |
| | | 40 | | } |
| | | 41 | | |
| | | 42 | | /// <summary> |
| | | 43 | | /// Called when type specific data need to be loaded. |
| | | 44 | | /// </summary> |
| | | 45 | | protected override void LoadData() |
| | 1698 | 46 | | { |
| | 1698 | 47 | | WantReply = ReadBoolean(); |
| | 1698 | 48 | | } |
| | | 49 | | |
| | | 50 | | /// <summary> |
| | | 51 | | /// Called when type specific data need to be saved. |
| | | 52 | | /// </summary> |
| | | 53 | | protected override void SaveData() |
| | 1722 | 54 | | { |
| | 1722 | 55 | | Write(WantReply); |
| | 1722 | 56 | | } |
| | | 57 | | } |
| | | 58 | | } |