-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIResponseMessage.cs
More file actions
23 lines (21 loc) · 884 Bytes
/
IResponseMessage.cs
File metadata and controls
23 lines (21 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
namespace RapidField.SolidInstruments.Messaging
{
/// <summary>
/// Represents a message that serves as a response to an <see cref="IMessage{TResponseMessage}" />.
/// </summary>
public interface IResponseMessage : IMessage
{
/// <summary>
/// Gets or sets the identifier for the associated request message.
/// </summary>
public Guid RequestMessageIdentifier
{
get;
set;
}
}
}