File: ISession.xml

package info (click to toggle)
mono 6.14.1%2Bds2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,282,732 kB
  • sloc: cs: 11,182,461; xml: 2,850,281; ansic: 699,123; cpp: 122,919; perl: 58,604; javascript: 30,841; asm: 21,845; makefile: 19,602; sh: 10,973; python: 4,772; pascal: 925; sql: 859; sed: 16; php: 1
file content (80 lines) | stat: -rw-r--r-- 3,572 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0" encoding="utf-8"?>
<Type Name="ISession" FullName="System.ServiceModel.Channels.ISession">
  <TypeSignature Language="C#" Value="public interface ISession" />
  <TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract ISession" />
  <AssemblyInfo>
    <AssemblyName>System.ServiceModel</AssemblyName>
    <AssemblyVersion>4.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Interfaces />
  <Docs>
    <remarks>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>The <see cref="T:System.ServiceModel.Channels.ISession" /> interface is the base interface for all sessions. It contains a <see cref="P:System.ServiceModel.Channels.ISession.ID" /> property for identifying the session.</para>
      <para>A session is a shared context among all participants in a communication exchange. This shared context is characterized by the following three properties: </para>
      <list type="bullet">
        <item>
          <para>Session establishment - a process for establishing shared context among all participants. </para>
        </item>
        <item>
          <para>Message correlation - a method for correlating a group of messages to an instance of shared context. </para>
        </item>
        <item>
          <para>The <see cref="T:System.ServiceModel.Channels.ISession" /> interface is not informed as to the number of participants in a session or the lifetime of a session.</para>
        </item>
      </list>
      <para>These session properties are provided by associating an ID with a session. </para>
      <para>
        <see cref="T:System.ServiceModel.Channels.ISession" /> is inherited by:</para>
      <list type="bullet">
        <item>
          <para>
            <see cref="T:System.ServiceModel.Channels.IInputSession" />
          </para>
        </item>
        <item>
          <para>
            <see cref="T:System.ServiceModel.Channels.IOutputSession" />
          </para>
        </item>
        <item>
          <para>
            <see cref="T:System.ServiceModel.Channels.IDuplexSession" />
          </para>
        </item>
        <item>
          <para>
            <see cref="T:System.ServiceModel.Channels.ISessionChannel`1" /> of type <see cref="T:System.ServiceModel.Channels.ISession" /></para>
        </item>
      </list>
    </remarks>
    <summary>
      <attribution license="cc4" from="Microsoft" modified="false" />
      <para>Defines the interface to establish a shared context among parties that exchange messages by providing an ID for the communication session. </para>
    </summary>
  </Docs>
  <Members>
    <Member MemberName="Id">
      <MemberSignature Language="C#" Value="public string Id { get; }" />
      <MemberSignature Language="ILAsm" Value=".property instance string Id" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>4.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>System.String</ReturnType>
      </ReturnValue>
      <Docs>
        <value>To be added.</value>
        <remarks>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>If the session is interrupted, it can be retrieved using the <see cref="P:System.ServiceModel.Channels.ISession.Id" />.</para>
        </remarks>
        <summary>
          <attribution license="cc4" from="Microsoft" modified="false" />
          <para>Gets the ID that uniquely identifies the session. </para>
        </summary>
      </Docs>
    </Member>
  </Members>
</Type>