コード例 #1
0
ファイル: TestConnection.cs プロジェクト: rbanks54/EventStore
 public static IEventStoreConnection Create(IPEndPoint endPoint, TcpType tcpType = TcpType.Normal, UserCredentials userCredentials = null)
 {
     return EventStoreConnection.Create(Settings(tcpType, userCredentials),
                                        endPoint.ToESTcpUri(),
                                        string.Format("ESC-{0}", Interlocked.Increment(ref _nextConnId)));
 }