Class SSLServerSocket
public class SSLServerSocket : ServerSocket, IDynamicMetaObjectProvider, IJVMBridgeCore, IEquatable<IJVMBridgeBase>, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition, ICloseable, IAutoCloseable
- Inheritance
-
SSLServerSocket
- Implements
- Inherited Members
-
JVMBridgeBase<AutoCloseable>.SExecuteWithSignature(Type, IJavaType, string, string, params object[])JVMBridgeBase<AutoCloseable>.SExecute<TReturn, TConverter>(Type, IJavaType, string, params object[])JVMBridgeBase<AutoCloseable>.SExecuteWithSignatureArray<TArrayType>(string, string, params object[])
- Extension Methods
Constructors
SSLServerSocket()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
[Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public SSLServerSocket()
SSLServerSocket(IJVMBridgeBaseInitializer)
Internal constructor: used internally from JCOBridge
[Obsolete("This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public SSLServerSocket(IJVMBridgeBaseInitializer initializer)
Parameters
initializerIJVMBridgeBaseInitializer
SSLServerSocket(params object[])
Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class
[Obsolete("SSLServerSocket class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public SSLServerSocket(params object[] args)
Parameters
argsobject[]
Properties
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
EnableSessionCreation
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getEnableSessionCreation-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setEnableSessionCreation-boolean-
public bool EnableSessionCreation { get; set; }
Property Value
EnabledCipherSuites
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getEnabledCipherSuites-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setEnabledCipherSuites-java.lang.String[]-
public String[] EnabledCipherSuites { get; set; }
Property Value
- String[]
EnabledProtocols
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getEnabledProtocols-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setEnabledProtocols-java.lang.String[]-
public String[] EnabledProtocols { get; set; }
Property Value
- String[]
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
NeedClientAuth
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getNeedClientAuth-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setNeedClientAuth-boolean-
public bool NeedClientAuth { get; set; }
Property Value
SSLParameters
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getSSLParameters-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setSSLParameters-javax.net.ssl.SSLParameters-
public SSLParameters SSLParameters { get; set; }
Property Value
SupportedCipherSuites
public String[] SupportedCipherSuites { get; }
Property Value
- String[]
SupportedProtocols
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getSupportedProtocols--
public String[] SupportedProtocols { get; }
Property Value
- String[]
UseClientMode
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getUseClientMode-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setUseClientMode-boolean-
public bool UseClientMode { get; set; }
Property Value
WantClientAuth
https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#getWantClientAuth-- https://docs.oracle.com/javase/8/docs/api/javax/net/ssl/SSLServerSocket.html#setWantClientAuth-boolean-
public bool WantClientAuth { get; set; }