~ubuntu-branches/ubuntu/hardy/f-spot/hardy-proposed

« back to all changes in this revision

Viewing changes to dbus-sharp/Address.cs

  • Committer: Bazaar Package Importer
  • Author(s): Andrew Mitchell
  • Date: 2007-02-26 23:07:50 UTC
  • mfrom: (1.1.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20070226230750-yqqal697x32gyjbg
Tags: 0.3.4-0ubuntu1
* New upstream release
* Use system copies of NDesk.DBus instead of using the bundled source
* Add patch from SVN r2790 for LP: #59723

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
                public BadAddressException (string reason) : base (reason) {}
14
14
        }
15
15
 
16
 
        public class AddressEntry
 
16
        class AddressEntry
17
17
        {
18
18
                public string Method;
19
19
                public IDictionary<string,string> Properties = new Dictionary<string,string> ();
107
107
                }
108
108
        }
109
109
 
110
 
        public class Address
 
110
        static class Address
111
111
        {
112
112
                //(unix:(path|abstract)=.*,guid=.*|tcp:host=.*(,port=.*)?);? ...
113
113
                public static AddressEntry[] Parse (string addresses)