本文整理汇总了C#中Connector.AddRepository方法的典型用法代码示例。如果您正苦于以下问题:C# Connector.AddRepository方法的具体用法?C# Connector.AddRepository怎么用?C# Connector.AddRepository使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Connector
的用法示例。
在下文中一共展示了Connector.AddRepository方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestGetInfoFromFileName_AlreadyInRepository
public void TestGetInfoFromFileName_AlreadyInRepository( )
{
string repositoryId;
string artifactId;
string versionLabel;
string documentUrl = TestServerInfo.CombineUrlWithSPServer("/sites/UnitTests/Docs/TestConnector/TestConnector.docx");
string expectedRepositoryId = TestServerInfo.SPTestServerName;
string expectedArtifactId = TestServerInfo.CombineUrlWithSPServer("/sites/UnitTests/Docs/TestConnector/TestConnector.docx");
Connector c = new Connector( );
Assert.IsFalse( c.GetInfoFromFileName( @"c:\not a http document", out repositoryId, out artifactId, out versionLabel ) );
Uri uri = new Uri(documentUrl);
Repository r = new Repository( uri.Host, "http://" + uri.Host );
Artifact a = new Artifact( uri, r );
r.AddArtifact( a );
c.AddRepository( r );
Assert.IsTrue( c.GetInfoFromFileName( documentUrl, out repositoryId, out artifactId, out versionLabel ) );
Assert.AreEqual( expectedRepositoryId, repositoryId );
Assert.AreEqual( expectedArtifactId, artifactId );
Assert.IsTrue( !string.IsNullOrEmpty( versionLabel ) );
}
示例2: TestGetInfoFromFileName_RemoteDocument
public void TestGetInfoFromFileName_RemoteDocument( )
{
string repositoryId;
string artifactId;
string versionLabel;
//this document Url needs to exist on a sharepoint server
string documentUrl = TestServerInfo.CombineUrlWithSPServer("/sites/UnitTests/Docs/TestConnector/TestConnector.docx");
string expectedRepositoryId = TestServerInfo.SPTestServerName;
string expectedArtifactId = TestServerInfo.CombineUrlWithSPServer("/sites/UnitTests/Docs/TestConnector/TestConnector.docx");
Connector c = new Connector( );
Uri uri = new Uri( documentUrl );
Repository r = new Repository( uri.Host, "http://" + uri.Host );
c.AddRepository( r );
Assert.IsFalse( c.GetInfoFromFileName( @"c:\not a http document", out repositoryId, out artifactId, out versionLabel ) );
Assert.IsTrue( c.GetInfoFromFileName( documentUrl, out repositoryId, out artifactId, out versionLabel ) );
Assert.AreEqual( expectedRepositoryId, repositoryId );
Assert.AreEqual( expectedArtifactId, artifactId );
}