mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
16 lines
514 B
C#
16 lines
514 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace Microsoft.Iris.Debug;
|
|
|
|
/// <summary>
|
|
/// Provides helpers for things that are common between debug clients, servers, and transports.
|
|
/// </summary>
|
|
public static class DebugRemoting
|
|
{
|
|
public const string DEFAULT_TCP_CLIENT_URI = "tcp://127.0.0.1:5555";
|
|
|
|
public const string DEFAULT_TCP_SERVER_URI = "tcp://127.0.0.1:5555";
|
|
|
|
internal static IFormatter CreateBsonFormatter() => new BsonFormatter(new StreamingContext(StreamingContextStates.Remoting));
|
|
}
|