コード例 #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
ファイル: BaseRemoteReference.cs プロジェクト: oqewok/gitter
        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
ファイル: BaseRemoteReference.cs プロジェクト: Kuzq/gitter
        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
ファイル: RemoteRepositoryTag.cs プロジェクト: oqewok/gitter
 internal RemoteRepositoryTag(RemoteReferencesCollection refs, string name, TagType type, Hash hash)
     : base(refs, name, hash)
 {
     _tagType = type;
 }
コード例 #5
0
ファイル: RemoteRepositoryBranch.cs プロジェクト: Kuzq/gitter
 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)
 {
 }