Skip to content

Commit

Permalink
Merge pull request #5 from alexwiese/xml-comment
Browse files Browse the repository at this point in the history
Added more comments.
  • Loading branch information
alexwiese authored Sep 19, 2017
2 parents 91942bc + a07f986 commit 3203c3a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Lyre/NativeMessagingHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public NativeMessagingHost()
{
}

/// <summary>
/// Initializes a new instance of the <see cref="NativeMessagingHost"/> using the
/// provided input stream, ouput stream, <see cref="Encoding"/> and <see cref="JsonSerializerSettings"/>.
/// </summary>
public NativeMessagingHost(Stream inStream, Stream outStream, Encoding encoding, JsonSerializerSettings jsonSerializerSettings)
{
_inStream = inStream ?? throw new ArgumentNullException(nameof(inStream));
Expand Down

0 comments on commit 3203c3a

Please sign in to comment.