-
Notifications
You must be signed in to change notification settings - Fork 152
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Rpc marshaling support for custom interfaces.
- Loading branch information
Matteo Prosperi
committed
Mar 10, 2022
1 parent
114ee4f
commit 3570d33
Showing
12 changed files
with
837 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace StreamJsonRpc; | ||
|
||
using System; | ||
|
||
/// <summary> | ||
/// Marks an interface as marshalable. | ||
/// </summary> | ||
[AttributeUsage(AttributeTargets.Interface, AllowMultiple = false, Inherited = false)] | ||
public class RpcMarshalableAttribute : Attribute | ||
{ | ||
} |
Oops, something went wrong.