13 lines
351 B
C#
13 lines
351 B
C#
|
//----------------------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//----------------------------------------------------------------------------
|
||
|
namespace System.ServiceModel.Channels
|
||
|
{
|
||
|
using System;
|
||
|
|
||
|
public interface ISession
|
||
|
{
|
||
|
string Id { get; }
|
||
|
}
|
||
|
}
|