~ubuntu-branches/ubuntu/utopic/lasso/utopic-proposed

« back to all changes in this revision

Viewing changes to csharp/LogoutRequest.cs

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2004-09-13 09:26:34 UTC
  • Revision ID: james.westby@ubuntu.com-20040913092634-01vdfl8j9cp94exa
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------------
 
2
 * This file was automatically generated by SWIG (http://www.swig.org).
 
3
 * Version: 1.3.21
 
4
 *
 
5
 * Do not make changes to this file unless you know what you are doing--modify
 
6
 * the SWIG interface file instead.
 
7
 * ----------------------------------------------------------------------------- */
 
8
 
 
9
//package lasso;
 
10
 
 
11
using System;
 
12
public class LogoutRequest : IDisposable {
 
13
  private IntPtr swigCPtr;
 
14
  protected bool swigCMemOwn;
 
15
 
 
16
  internal LogoutRequest(IntPtr cPtr, bool cMemoryOwn) {
 
17
    swigCMemOwn = cMemoryOwn;
 
18
    swigCPtr = cPtr;
 
19
  }
 
20
 
 
21
  protected LogoutRequest() : this(IntPtr.Zero, false) {
 
22
  }
 
23
 
 
24
  public virtual void Dispose() {
 
25
    if(swigCPtr != IntPtr.Zero && swigCMemOwn) {
 
26
      swigCMemOwn = false;
 
27
      throw new MethodAccessException("C++ destructor does not have public access");
 
28
    }
 
29
    swigCPtr = IntPtr.Zero;
 
30
    GC.SuppressFinalize(this);
 
31
  }
 
32
 
 
33
  internal static IntPtr getCPtr(LogoutRequest obj) {
 
34
    return (obj == null) ? IntPtr.Zero : obj.swigCPtr;
 
35
  }
 
36
 
 
37
  public string relayState {
 
38
    set {
 
39
      lassoPINVOKE.set_LogoutRequest_relayState(swigCPtr, value);
 
40
    } 
 
41
    get {
 
42
      return lassoPINVOKE.get_LogoutRequest_relayState(swigCPtr);
 
43
    } 
 
44
  }
 
45
 
 
46
}