示例#1
0
        internal BaseRemoteReference(RemoteReferencesCollection refs, string name, Hash hash)
        {
            Verify.Argument.IsNotNull(refs, nameof(refs));
            Verify.Argument.IsNeitherNullNorWhitespace(name, nameof(name));

            References = refs;
            Name       = name;
            Hash       = hash;
        }
示例#2
0
        internal BaseRemoteReference(RemoteReferencesCollection refs, string name, Hash hash)
        {
            Verify.Argument.IsNotNull(refs, "refs");
            Verify.Argument.IsNeitherNullNorWhitespace(name, "name");

            _refs = refs;
            _name = name;
            _hash = hash;
        }
示例#3
0
        internal BaseRemoteReference(RemoteReferencesCollection refs, string name, Hash hash)
        {
            Verify.Argument.IsNotNull(refs, "refs");
            Verify.Argument.IsNeitherNullNorWhitespace(name, "name");

            _refs = refs;
            _name = name;
            _hash = hash;
        }
示例#4
0
 internal RemoteRepositoryTag(RemoteReferencesCollection refs, string name, TagType type, Hash hash)
     : base(refs, name, hash)
 {
     _tagType = type;
 }
示例#5
0
 internal RemoteRepositoryBranch(RemoteReferencesCollection refs, string name, Hash hash)
     : base(refs, name, hash)
 {
 }
示例#6
0
 internal RemoteRepositoryBranch(RemoteReferencesCollection refs, string name, Hash hash)
     : base(refs, name, hash)
 {
 }