Como gerar o XML GetSystemDateAndTime

Eu tenho o seguinte pedaço de código que tirei deesta fonte...

public bool Initialise(string cameraAddress, string userName, string password)
    {
        bool result = false;

        try
        {
            var messageElement = new TextMessageEncodingBindingElement()
            {
                MessageVersion = MessageVersion.CreateVersion(EnvelopeVersion.Soap12, AddressingVersion.None)
            };

            HttpTransportBindingElement httpBinding = new HttpTransportBindingElement()
            {
                AuthenticationScheme = AuthenticationSchemes.Digest
            };

            CustomBinding bind = new CustomBinding(messageElement, httpBinding);


            mediaClient = new MediaClient(bind, new EndpointAddress($"http://{cameraAddress}/onvif/Media"));
            mediaClient.ClientCredentials.HttpDigest.AllowedImpersonationLevel = System.Security.Principal.TokenImpersonationLevel.Impersonation;
            mediaClient.ClientCredentials.HttpDigest.ClientCredential.UserName = userName;
            mediaClient.ClientCredentials.HttpDigest.ClientCredential.Password = password;

            var profs = mediaClient.GetProfiles();

            //rest of the code...

Quando executo o wireshark enquanto passo pelaGetProfiles() parte no depurador, vejo que o XML gerado se parece com:

Qual código seria necessário para alterar o xml para se parecer com:

Como devo chamar oGetSystemDateAndTime função?

Para ligar para oGetProfiles função, eu tive que criar umMediaClient e, então, chame essa função ...

Existe um MediaClient para obter acesso ao GetSystemDateAndTime?

Editar:

Eu descobri que você poderia usar oDeviceClient para ter acesso aoGetSystemDateAndTime função...

Você precisará adicionar o wsdl de gerenciamento de dispositivos aos seus serviços conectados antes:https://www.onvif.org/ver10/device/wsdl/devicemgmt.wsdl

Eu também adicioneiSystem.Net.ServicePointManager.Expect100Continue = false; lá porque eu vi alguém disse que ajudouesse link...

Então eu adicionei:

CustomBinding bind = new CustomBinding(messageElement, httpBinding);
System.Net.ServicePointManager.Expect100Continue = false;
DeviceClient d = new DeviceClient(bind, new EndpointAddress($"http://{cameraAddress}/onvif/device_service"));
var time = d.GetSystemDateAndTime();

Nota: Ainda estou recebendo o erro:

        ErrorMessage    "The header 'To' from the namespace 'http://www.w3.org/2005/08/addressing' was not understood by the recipient of this message, causing the message to not be processed.  This error typically indicates that the sender of this message has enabled a communication protocol that the receiver cannot process.  Please ensure that the configuration of the client's binding is consistent with the service's binding. "   string

questionAnswers(1)

yourAnswerToTheQuestion