CameraServerConfig Constructor |
Namespace: Ozeki.CameraAssembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.13.0
Syntaxpublic CameraServerConfig(
string address = "",
int port = 0,
IVideoSender videoSource = null,
IAudioSender audioSource = null,
OnvifConfig onvif = null
)
Public Sub New (
Optional address As String = "",
Optional port As Integer = 0,
Optional videoSource As IVideoSender = Nothing,
Optional audioSource As IAudioSender = Nothing,
Optional onvif As OnvifConfig = Nothing
)
public:
CameraServerConfig(
String^ address = L"",
int port = 0,
IVideoSender^ videoSource = nullptr,
IAudioSender^ audioSource = nullptr,
OnvifConfig^ onvif = nullptr
)
new :
?address : string *
?port : int *
?videoSource : IVideoSender *
?audioSource : IAudioSender *
?onvif : OnvifConfig
(* Defaults:
let _address = defaultArg address ""
let _port = defaultArg port 0
let _videoSource = defaultArg videoSource null
let _audioSource = defaultArg audioSource null
let _onvif = defaultArg onvif null
*)
-> CameraServerConfig
Parameters
- address String (Optional)
-
- port Int32 (Optional)
-
- videoSource IVideoSender (Optional)
-
- audioSource IAudioSender (Optional)
-
- onvif OnvifConfig (Optional)
-
See Also