Revision 6bcdd8e2 trunk/Pithos.Interfaces/ObjectInfo.cs
b/trunk/Pithos.Interfaces/ObjectInfo.cs | ||
---|---|---|
139 | 139 |
get |
140 | 140 |
{ |
141 | 141 |
var relativeUrl=String.Format("{0}/{1}/{2}",Account, Container,Name); |
142 |
return new Uri(StorageUri,relativeUrl); |
|
142 |
return StorageUri==null |
|
143 |
? new Uri(relativeUrl,UriKind.Relative) |
|
144 |
: new Uri(StorageUri, relativeUrl); |
|
143 | 145 |
} |
144 | 146 |
} |
145 | 147 |
|
Also available in: Unified diff