Welcome to mirror list, hosted at ThFree Co, Russian Federation.

LogicalCallContext.cs « System.Runtime.Remoting.Messaging « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9e44a0ca4b21a5b5a590d213d84dddbe1fd6b59 (plain)
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
//
// System.Runtime.Remoting.Messaging.LogicalCallContext.cs
//
// Author:
//   Dan Lewis (dihlewis@yahoo.co.uk)
//
// (C) 2002
//
// Stubbed.
//

using System.Runtime.Serialization;

namespace System.Runtime.Remoting.Messaging {

	[MonoTODO]
	[Serializable]
	public sealed class LogicalCallContext : ISerializable, ICloneable {

		internal LogicalCallContext () {}

		public bool HasInfo {
			get { return false; }
		}

		public void FreeNamedDataSlot (string name) {
		}

		public object GetData (string name) {
			return null;
		}

		public void GetObjectData (SerializationInfo info, StreamingContext context) {
		}

		public void SetData (string name, object data) {
		}

		public object Clone () {
			return null;
		}
	}
}