Jump to content

auszulesen Eigenschaft Anmeldungen


Stefano Pranzo

Recommended Posts

  • Most Valued User

Hallo Stefano,

 

auf welches Swyx SDK beziehst du dich? Swyx bietet zwei verschiedene SDKs:


ConfigDataStore API/SDK (KB3216)

 

SwyxIt! 2015 (V10.00) Client SDK (KB4660)

 

Des Weitern verstehe ich nicht was du mit der Eigenschaft "Anmeldungen" meinst.

Bitte stelle deine Frage etwas ausführlicher.

 

Kind regards

 

Sebastian Dreier

Link to comment
Share on other sites


  • Most Valued User

Hallo Stefano,

 

hier die Antwort auf deine Frage in Form von C# Demo Code (nicht getestet):

 

// Create and configure new LibManager object
libManager = new LibManager()
{
    BaseProtocol = SProxyObject.BaseProtocol.TCP,
    Username = "Admin",
    Password = "123456",
    WSBaseUrl = "127.0.0.1",
    AuthenticationMode = SProxyObject.AuthenticationMode.UsernamePassword
};

// Create an AdminFacade object
adminFacade = libManager.GetAdminFacade();

// Define out variables 
var callsEnabled = false;
var loginsAllowed = false;
var hresult = 0;

// Call method on the admin facade object to get the values
adminFacade.CallsLoginsEnabled(out callsEnabled, out loginsAllowed, out hresult);

Kind regards

 

Sebastian Dreier

 

Link to comment
Share on other sites


Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and have taken note of our Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.