
system.net.ServicePoint Maven / Gradle / Ivy
/*
* MIT License
*
* Copyright (c) 2023 MASES s.r.l.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/**************************************************************************************
*
* This code was generated from a template using JCOReflector
*
* Manual changes to this file may cause unexpected behavior in your application.
* Manual changes to this file will be overwritten if the code is regenerated.
*
*************************************************************************************/
package system.net;
import org.mases.jcobridge.*;
import org.mases.jcobridge.netreflection.*;
import java.util.ArrayList;
// Import section
import system.DateTime;
import system.net.BindIPEndPoint;
import system.security.cryptography.x509certificates.X509Certificate;
import system.Uri;
import system.Version;
/**
* The base .NET class managing System.Net.ServicePoint, System.Net.ServicePoint, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51.
*
*
* .NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.ServicePoint
*
*
* Powered by JCOBridge: more info at https://www.jcobridge.com
*/
public class ServicePoint extends NetObject {
/**
* Fully assembly qualified name: System.Net.ServicePoint, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
*/
public static final String assemblyFullName = "System.Net.ServicePoint, Version=7.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51";
/**
* Assembly name: System.Net.ServicePoint
*/
public static final String assemblyShortName = "System.Net.ServicePoint";
/**
* Qualified class name: System.Net.ServicePoint
*/
public static final String className = "System.Net.ServicePoint";
static JCOBridge bridge = JCOBridgeInstance.getInstance(assemblyFullName);
/**
* The type managed from JCOBridge. See {@link JCType}
*/
public static JCType classType = createType();
static JCEnum enumInstance = null;
JCObject classInstance = null;
static JCType createType() {
try {
String classToCreate = className + ", "
+ (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Creating %s", classToCreate);
JCType typeCreated = bridge.GetType(classToCreate);
if (JCOReflector.getDebug())
JCOReflector.writeLog("Created: %s",
(typeCreated != null) ? typeCreated.toString() : "Returned null value");
return typeCreated;
} catch (JCException e) {
JCOReflector.writeLog(e);
return null;
}
}
void addReference(String ref) throws Throwable {
try {
bridge.AddReference(ref);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
/**
* Internal constructor. Use with caution
*/
public ServicePoint(java.lang.Object instance) throws Throwable {
super(instance);
if (instance instanceof JCObject) {
classInstance = (JCObject) instance;
} else
throw new Exception("Cannot manage object, it is not a JCObject");
}
public String getJCOAssemblyName() {
return assemblyFullName;
}
public String getJCOClassName() {
return className;
}
public String getJCOObjectName() {
return className + ", " + (JCOReflector.getUseFullAssemblyName() ? assemblyFullName : assemblyShortName);
}
public java.lang.Object getJCOInstance() {
return classInstance;
}
public void setJCOInstance(JCObject instance) {
classInstance = instance;
super.setJCOInstance(classInstance);
}
public JCType getJCOType() {
return classType;
}
/**
* Try to cast the {@link IJCOBridgeReflected} instance into {@link ServicePoint}, a cast assert is made to check if types are compatible.
* @param from {@link IJCOBridgeReflected} instance to be casted
* @return {@link ServicePoint} instance
* @throws java.lang.Throwable in case of error during cast operation
*/
public static ServicePoint cast(IJCOBridgeReflected from) throws Throwable {
NetType.AssertCast(classType, from);
return new ServicePoint(from.getJCOInstance());
}
// Constructors section
public ServicePoint() throws Throwable {
}
// Methods section
public boolean CloseConnectionGroup(java.lang.String connectionGroupName) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Invoke("CloseConnectionGroup", connectionGroupName);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void SetTcpKeepAlive(boolean enabled, int keepAliveTime, int keepAliveInterval) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Invoke("SetTcpKeepAlive", enabled, keepAliveTime, keepAliveInterval);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Properties section
public boolean getExpect100Continue() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Get("Expect100Continue");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setExpect100Continue(boolean Expect100Continue) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("Expect100Continue", Expect100Continue);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean getSupportsPipelining() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Get("SupportsPipelining");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public boolean getUseNagleAlgorithm() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (boolean)classInstance.Get("UseNagleAlgorithm");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setUseNagleAlgorithm(boolean UseNagleAlgorithm) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("UseNagleAlgorithm", UseNagleAlgorithm);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getConnectionLeaseTimeout() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("ConnectionLeaseTimeout");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setConnectionLeaseTimeout(int ConnectionLeaseTimeout) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("ConnectionLeaseTimeout", ConnectionLeaseTimeout);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getConnectionLimit() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("ConnectionLimit");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setConnectionLimit(int ConnectionLimit) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("ConnectionLimit", ConnectionLimit);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getCurrentConnections() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("CurrentConnections");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getMaxIdleTime() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("MaxIdleTime");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setMaxIdleTime(int MaxIdleTime) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("MaxIdleTime", MaxIdleTime);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public int getReceiveBufferSize() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (int)classInstance.Get("ReceiveBufferSize");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setReceiveBufferSize(int ReceiveBufferSize) throws Throwable, system.ArgumentException, system.ArgumentOutOfRangeException, system.ArgumentNullException, system.InvalidOperationException, system.PlatformNotSupportedException, system.ArrayTypeMismatchException, system.IndexOutOfRangeException, system.NotSupportedException, system.globalization.CultureNotFoundException, system.ObjectDisposedException {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("ReceiveBufferSize", ReceiveBufferSize);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public DateTime getIdleSince() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("IdleSince");
return new DateTime(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setIdleSince(DateTime IdleSince) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("IdleSince", IdleSince == null ? null : IdleSince.getJCOInstance());
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public BindIPEndPoint getBindIPEndPointDelegate() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (BindIPEndPoint)classInstance.Get("BindIPEndPointDelegate");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public void setBindIPEndPointDelegate(BindIPEndPoint BindIPEndPointDelegate) throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
classInstance.Set("BindIPEndPointDelegate", BindIPEndPointDelegate);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public X509Certificate getCertificate() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("Certificate");
return new X509Certificate(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public X509Certificate getClientCertificate() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("ClientCertificate");
return new X509Certificate(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public java.lang.String getConnectionName() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
return (java.lang.String)classInstance.Get("ConnectionName");
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public Uri getAddress() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("Address");
return new Uri(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
public Version getProtocolVersion() throws Throwable {
if (classInstance == null)
throw new UnsupportedOperationException("classInstance is null.");
try {
JCObject val = (JCObject)classInstance.Get("ProtocolVersion");
return new Version(val);
} catch (JCNativeException jcne) {
throw translateException(jcne);
}
}
// Instance Events section
}