CameraServerConfig Constructor |
Namespace: Ozeki.CameraAssembly: OzekiSDK (in OzekiSDK.dll) Version: 1.8.12.0 (1.8.12)
Syntax public 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 (Optional)
- Type: SystemString
- port (Optional)
- Type: SystemInt32
- videoSource (Optional)
- Type: Ozeki.MediaIVideoSender
- audioSource (Optional)
- Type: Ozeki.MediaIAudioSender
- onvif (Optional)
- Type: Ozeki.CameraOnvifConfig
See Also