Esempio n. 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;
        }
Esempio n. 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;
        }
Esempio n. 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;
        }
Esempio n. 4
0
 internal RemoteRepositoryTag(RemoteReferencesCollection refs, string name, TagType type, Hash hash)
     : base(refs, name, hash)
 {
     _tagType = type;
 }
Esempio n. 5
0
 internal RemoteRepositoryBranch(RemoteReferencesCollection refs, string name, Hash hash)
     : base(refs, name, hash)
 {
 }
Esempio n. 6
0
 internal RemoteRepositoryBranch(RemoteReferencesCollection refs, string name, Hash hash)
     : base(refs, name, hash)
 {
 }