-
Notifications
You must be signed in to change notification settings - Fork 3
/
IHandshakeCompletedListener.xml
105 lines (105 loc) · 6.88 KB
/
IHandshakeCompletedListener.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<Type Name="IHandshakeCompletedListener" FullName="Javax.Net.Ssl.IHandshakeCompletedListener">
<TypeSignature Language="C#" Value="public interface IHandshakeCompletedListener : IDisposable, Java.Interop.IJavaPeerable, Java.Util.IEventListener" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract beforefieldinit IHandshakeCompletedListener implements class Android.Runtime.IJavaObject, class Java.Interop.IJavaPeerable, class Java.Util.IEventListener, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Javax.Net.Ssl.IHandshakeCompletedListener" />
<TypeSignature Language="F#" Value="type IHandshakeCompletedListener = interface
 interface IEventListener
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Util.IEventListener</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("javax/net/ssl/HandshakeCompletedListener", "", "Javax.Net.Ssl.IHandshakeCompletedListenerInvoker")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("javax/net/ssl/HandshakeCompletedListener", "", "Javax.Net.Ssl.IHandshakeCompletedListenerInvoker")>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="1">
<summary>This interface is implemented by any class which wants to receive
notifications about the completion of an SSL protocol handshake
on a given SSL connection.</summary>
<remarks>
<para>This interface is implemented by any class which wants to receive
notifications about the completion of an SSL protocol handshake
on a given SSL connection.</para>
<para>When an SSL handshake completes, new security parameters will
have been established. Those parameters always include the security
keys used to protect messages. They may also include parameters
associated with a new <em>session</em> such as authenticated
peer identity and a new SSL cipher suite.</para>
<para>Added in 1.4.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/HandshakeCompletedListener" title="Reference documentation">Java documentation for <code>javax.net.ssl.HandshakeCompletedListener</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
<Members>
<Member MemberName="HandshakeCompleted">
<MemberSignature Language="C#" Value="public void HandshakeCompleted (Javax.Net.Ssl.HandshakeCompletedEvent? e);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void HandshakeCompleted(class Javax.Net.Ssl.HandshakeCompletedEvent e) cil managed" />
<MemberSignature Language="DocId" Value="M:Javax.Net.Ssl.IHandshakeCompletedListener.HandshakeCompleted(Javax.Net.Ssl.HandshakeCompletedEvent)" />
<MemberSignature Language="F#" Value="abstract member HandshakeCompleted : Javax.Net.Ssl.HandshakeCompletedEvent -> unit" Usage="iHandshakeCompletedListener.HandshakeCompleted e" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("handshakeCompleted", "(Ljavax/net/ssl/HandshakeCompletedEvent;)V", "GetHandshakeCompleted_Ljavax_net_ssl_HandshakeCompletedEvent_Handler:Javax.Net.Ssl.IHandshakeCompletedListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("handshakeCompleted", "(Ljavax/net/ssl/HandshakeCompletedEvent;)V", "GetHandshakeCompleted_Ljavax_net_ssl_HandshakeCompletedEvent_Handler:Javax.Net.Ssl.IHandshakeCompletedListenerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="e" Type="Javax.Net.Ssl.HandshakeCompletedEvent" />
</Parameters>
<Docs>
<param name="e">the information on the completed SSL handshake event.
</param>
<param name="event">the event identifying when the SSL Handshake
completed on a given SSL connection</param>
<summary>This method is invoked on registered objects
when a SSL handshake is completed.</summary>
<remarks>
<para>This method is invoked on registered objects
when a SSL handshake is completed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/javax/net/ssl/HandshakeCompletedListener#handshakeCompleted(javax.net.ssl.HandshakeCompletedEvent)" title="Reference documentation">Java documentation for <code>javax.net.ssl.HandshakeCompletedListener.handshakeCompleted(javax.net.ssl.HandshakeCompletedEvent)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 1" />
</Docs>
</Member>
</Members>
</Type>