~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to external/ngit/NGit/NGit.Transport/TransportProtocol.cs

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
42
*/
43
43
 
 
44
using System;
44
45
using System.Collections.Generic;
45
46
using NGit;
 
47
using NGit.Internal;
46
48
using NGit.Transport;
47
49
using Sharpen;
48
50
 
319
321
                ///     </exception>
320
322
                public abstract NGit.Transport.Transport Open(URIish uri, Repository local, string
321
323
                         remoteName);
 
324
 
 
325
                /// <summary>Open a new transport instance to the remote repository.</summary>
 
326
                /// <remarks>
 
327
                /// Open a new transport instance to the remote repository. Use default
 
328
                /// configuration instead of reading from configuration files.
 
329
                /// </remarks>
 
330
                /// <param name="uri"></param>
 
331
                /// <returns>new Transport</returns>
 
332
                /// <exception cref="System.NotSupportedException">System.NotSupportedException</exception>
 
333
                /// <exception cref="NGit.Errors.TransportException">NGit.Errors.TransportException</exception>
 
334
                public virtual NGit.Transport.Transport Open(URIish uri)
 
335
                {
 
336
                        throw new NotSupportedException(JGitText.Get().transportNeedsRepository);
 
337
                }
322
338
        }
323
339
}