You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -85,7 +85,7 @@ Your ONVIF service should now be discoverable on the network and you should be a
85
85
## SharpOnvifClient
86
86
ONVIF client provides netstandard2.0 WCF bindings generated using `dotnet-svcutil`. `SimpleOnvifClient` wraps common API calls to get basic information from the camera and includes both Pull Point as well as Basic event subscriptions.
@@ -105,14 +105,14 @@ Call `GetServicesAsync` to retrieve a list of all services supported by the devi
105
105
varservices=awaitclient.GetServicesAsync();
106
106
```
107
107
108
-
Some operations require the device to support a service. For instance, to retrieve the stream URI a device must support the media service. To check whether the ONVIF service is supported by the device, call:
108
+
Some operations require the device to support a service. For instance, to retrieve the stream URI the device must support the media service. To check whether the ONVIF service is supported by the device, call:
109
109
```cs
110
110
if (services.Service.FirstOrDefault(x=>x.Namespace==OnvifServices.MEDIA) !=null)
111
111
{
112
112
// operation only available when the service is supported
113
113
}
114
114
```
115
-
Full list of services that can be supported by a device is available in `SharpOnvifCommon.OnvifServices`.
115
+
Full list of services that can be supported by the device is available in `SharpOnvifCommon.OnvifServices`.
116
116
117
117
### Pull Point event subscription
118
118
Pull point event subscription does not require any special networking configuration and it should work in most networks.
0 commit comments