Beispiel #1
0
 internal TfsMigrationFileAttachment(FileAttachmentMetadata attach)
 {
     m_attachment       = null;
     m_fileId           = null;
     m_name             = attach.Name;
     m_length           = attach.Length;
     m_utcCreationDate  = attach.UtcCreationDate;
     m_utcLastWriteDate = attach.UtcLastWriteDate;
     m_comment          = attach.Comment;
     m_uri         = null;
     m_absoluteUri = null;
 }
Beispiel #2
0
 internal TfsMigrationFileAttachment(FileAttachmentMetadata attach, string tfsTeamProjectCollectionUri)
 {
     m_attachment       = null;
     m_fileId           = null;
     m_name             = attach.Name;
     m_length           = attach.Length;
     m_utcCreationDate  = attach.UtcCreationDate;
     m_utcLastWriteDate = attach.UtcLastWriteDate;
     m_comment          = attach.Comment;
     m_uri         = null;
     m_absoluteUri = null;
     m_tfsTPCUri   = tfsTeamProjectCollectionUri;
 }