DeveloperOnlineContentLoaderTests ConnectToOnlineContentServiceWithoutExistingContent Method Delta Engine Documentation

Namespace: DeltaEngine.Content.Online.Tests
Assembly: DeltaEngine.Content.Online.Tests (in DeltaEngine.Content.Online.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void ConnectToOnlineContentServiceWithoutExistingContent()
Examples

[Test]
public void ConnectToOnlineContentServiceWithoutExistingContent()
{
    if (Directory.Exists("Content"))
        Directory.Delete("Content", true);
    bool ready = false;
    var connection = new OnlineServiceConnection(new MockSettings(),
        () => { throw new ConnectionTimedOut(); });
See Also