IJavaPeerable.JniPeerMembers Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Member access and invocation support.
public Java.Interop.JniPeerMembers JniPeerMembers { get; }
member this.JniPeerMembers : Java.Interop.JniPeerMembers
Property Value
Remarks
<block subset="none" type="usage"> This property will not throw a ObjectDisposedException after the instance has been disposed. </block> <block subset="none" type="overrides">
The JniPeerMembers
property may be accessed before the constructor has executed, as common behavior is for the JniPeerMembers
to be access virtually to permit caching of constructor jmethodID
s.
The proscribed implementation template is:
[JniTypeSignature ("my/Example")]
partial class ExampleBinding {
static readonly JniPeerMembers _members = new JniPeerMembers ("my/Example", typeof (ExampleBinding));
public override JniPeerMembers JniPeerMembers {
get {return _members;}
}
}
</block>