gstreamer/subprojects/gstreamer-sharp/sources/generated/Gst.Sdp/MIKEYPayloadRAND.cs

56 lines
1.5 KiB
C#

// This file was generated by the Gtk# code generator.
// Any changes made will be lost if regenerated.
namespace Gst.Sdp {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.InteropServices;
#region Autogenerated code
[StructLayout(LayoutKind.Sequential)]
public partial struct MIKEYPayloadRAND : IEquatable<MIKEYPayloadRAND> {
private IntPtr _pt;
public Gst.Sdp.MIKEYPayload Pt {
get {
return _pt == IntPtr.Zero ? null : (Gst.Sdp.MIKEYPayload) GLib.Opaque.GetOpaque (_pt, typeof (Gst.Sdp.MIKEYPayload), false);
}
set {
_pt = value == null ? IntPtr.Zero : value.Handle;
}
}
public byte Len;
public byte Rand;
public static Gst.Sdp.MIKEYPayloadRAND Zero = new Gst.Sdp.MIKEYPayloadRAND ();
public static Gst.Sdp.MIKEYPayloadRAND New(IntPtr raw) {
if (raw == IntPtr.Zero)
return Gst.Sdp.MIKEYPayloadRAND.Zero;
return (Gst.Sdp.MIKEYPayloadRAND) Marshal.PtrToStructure (raw, typeof (Gst.Sdp.MIKEYPayloadRAND));
}
public bool Equals (MIKEYPayloadRAND other)
{
return true && Pt.Equals (other.Pt) && Len.Equals (other.Len) && Rand.Equals (other.Rand);
}
public override bool Equals (object other)
{
return other is MIKEYPayloadRAND && Equals ((MIKEYPayloadRAND) other);
}
public override int GetHashCode ()
{
return this.GetType ().FullName.GetHashCode () ^ Pt.GetHashCode () ^ Len.GetHashCode () ^ Rand.GetHashCode ();
}
private static GLib.GType GType {
get { return GLib.GType.Pointer; }
}
#endregion
}
}