コード例 #1
0
 public bool Connect()
 {
     try
     {
         return(CompositeNetworkFunctions.CEcho(this.ip, this.port, this.aet, this.call));
     }
     catch
     {
         return(false);
     }
 }
コード例 #2
0
ファイル: PACS.cs プロジェクト: dariawisniowska/ProjektKWDM
 public bool Connect()
 {
     try
     {
         bool result = CompositeNetworkFunctions.CEcho(this.ip, this.port, this.aet, this.call);
         if (result)
         {
             GetData();
         }
         return(result);
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.ToString(), "Error");
         return(false);
     }
 }
コード例 #3
0
    public static int Main(string[] args)
    {
        string server   = args[0];
        ushort port     = ushort.Parse(args[1]);
        string filename = args[2];

        bool b = CompositeNetworkFunctions.CEcho(server, port);

        if (!b)
        {
            return(1);
        }

        FilenamesType files = new FilenamesType();

        files.Add(filename);
        b = CompositeNetworkFunctions.CStore(server, port, files);
        if (!b)
        {
            return(1);
        }

        return(0);
    }