///<summary> /// Asynchronous invoker for 'Agni.Social.Graph.IGraphCommentSystem.Fetch'. /// This is a two-way call per contract specification, meaning - the server sends the result back either /// returning no exception or WrappedExceptionData instance. /// CallSlot is returned that can be queried for CallStatus, ResponseMsg and result. ///</summary> public CallSlot Async_Fetch(@Agni.@Social.@Graph.@CommentQuery @query) { var request = new RequestAnyMsg(s_ts_CONTRACT, @s_ms_Fetch_7, false, RemoteInstance, new object[] { @query }); return(DispatchCall(request)); }
///<summary> /// Synchronous invoker for 'Agni.Social.Graph.IGraphCommentSystem.Fetch'. /// This is a two-way call per contract specification, meaning - the server sends the result back either /// returning '@System.@Collections.@Generic.@IEnumerable<@Agni.@Social.@Graph.@Comment>' or WrappedExceptionData instance. /// ClientCallException is thrown if the call could not be placed in the outgoing queue. /// RemoteException is thrown if the server generated exception during method execution. ///</summary> public @System.@Collections.@Generic.@IEnumerable <@Agni.@Social.@Graph.@Comment> @Fetch(@Agni.@Social.@Graph.@CommentQuery @query) { var call = Async_Fetch(@query); return(call.GetValue <@System.@Collections.@Generic.@IEnumerable <@Agni.@Social.@Graph.@Comment> >()); }