Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

MJPEGStream throws NotImplementedException in .NET Core 2.0 #699

@stigvoss

Description

@stigvoss

Related to adding support for .NET Core #318

MJPEGStream class throws an NotImplementedException when the SeparateConnectionGroup is set to true.
This only concerns .NET Core 2.0 and works as expected in full .NET Framework.

The source of the exception is here, the property is seemingly not implemented in .NET Core 2.0.

The following fails with described exception:

MJPEGStream stream = new MJPEGStream(source)
{
    Login = ...,
    Password = ...
};
stream.NewFrame += OnFrameReceived;
stream.VideoSourceError += OnSourceError;
stream.Start();

The following fails at #700

MJPEGStream stream = new MJPEGStream(source)
{
    Login = ...,
    Password = ...,
    SeparateConnectionGroup = false
};
stream.NewFrame += OnFrameReceived;
stream.VideoSourceError += OnSourceError;
stream.Start();

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions