Another usage sample at http://dn.codegear.com/article/36962
In the document, the  "[ServiceContract]" is used by the .Net runtime
to define service
interface( see bellow ).

type
  [ServiceContract]
  ISimpleCalc = interface

    [OperationContract]
    function Add(a, b: integer): integer;

    [OperationContract]
    function Subtract(a, b: integer): integer;

  end;

-- 
Inoussa O.
_______________________________________________
fpc-devel maillist  -  fpc-devel@lists.freepascal.org
http://lists.freepascal.org/mailman/listinfo/fpc-devel

Reply via email to