Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / System.ServiceModel / System.ServiceModel.Dispatcher / ClientOperation.cs
index ddb4bd6a537224d8080bd6df6b29d3c415b9dec3..1984a76985cc63a9e14de39769bf8d7119d6cb08 100644 (file)
@@ -39,7 +39,7 @@ namespace System.ServiceModel.Dispatcher
        public sealed class ClientOperation
        {
                internal class ClientOperationCollection :
-#if NET_2_1
+#if MOBILE
                        KeyedCollection<string, ClientOperation>
 #else
                        SynchronizedKeyedCollection<string, ClientOperation>
@@ -185,6 +185,23 @@ namespace System.ServiceModel.Dispatcher
                        }
                        throw new InvalidOperationException ("Cannot change this property after the service host is opened");
                }
+
+               [MonoTODO]
+               public ICollection<IParameterInspector> ClientParameterInspectors {
+                       get { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public MethodInfo TaskMethod {
+                       get { throw new NotImplementedException (); }
+                       set { throw new NotImplementedException (); }
+               }
+
+               [MonoTODO]
+               public Type TaskTResult {
+                       get { throw new NotImplementedException (); }
+                       set { throw new NotImplementedException (); }
+               }
                
        }
 }