~ubuntu-branches/ubuntu/jaunty/lasso/jaunty

« back to all changes in this revision

Viewing changes to csharp/LibRegisterNameIdentifierResponse.cs

  • Committer: Bazaar Package Importer
  • Author(s): Loic Pefferkorn
  • Date: 2005-11-25 19:20:59 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051125192059-m4894lhpynmkrmwr
Tags: 0.6.3-4ubuntu1
Resynchronise with Debian.

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.24
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
 
namespace lasso {
10
 
 
11
 
using System;
12
 
 
13
 
public class LibRegisterNameIdentifierResponse : LibStatusResponse, IDisposable {
14
 
  internal LibRegisterNameIdentifierResponse(IntPtr cPtr, bool cMemoryOwn) {
15
 
    swigCMemOwn = cMemoryOwn;
16
 
    swigCPtr = cPtr;
17
 
  }
18
 
 
19
 
  protected static IntPtr getCPtr(LibRegisterNameIdentifierResponse obj) {
20
 
    return (obj == null) ? IntPtr.Zero : obj.swigCPtr;
21
 
  }
22
 
 
23
 
  ~LibRegisterNameIdentifierResponse() {
24
 
    Dispose();
25
 
  }
26
 
 
27
 
  public virtual void Dispose() {
28
 
  base.Dispose();
29
 
}
30
 
 
31
 
  public StringList extension {
32
 
    set {
33
 
      lassoPINVOKE.set_LibRegisterNameIdentifierResponse_extension(swigCPtr, StringList.getCPtr(value));
34
 
    } 
35
 
    get {
36
 
      IntPtr cPtr = lassoPINVOKE.get_LibRegisterNameIdentifierResponse_extension(swigCPtr);
37
 
      return (cPtr == IntPtr.Zero) ? null : new StringList(cPtr, false);
38
 
    } 
39
 
  }
40
 
 
41
 
  public string providerId {
42
 
    set {
43
 
      lassoPINVOKE.set_LibRegisterNameIdentifierResponse_providerId(swigCPtr, value);
44
 
    } 
45
 
    get {
46
 
      return lassoPINVOKE.get_LibRegisterNameIdentifierResponse_providerId(swigCPtr);
47
 
    } 
48
 
  }
49
 
 
50
 
  public string relayState {
51
 
    set {
52
 
      lassoPINVOKE.set_LibRegisterNameIdentifierResponse_relayState(swigCPtr, value);
53
 
    } 
54
 
    get {
55
 
      return lassoPINVOKE.get_LibRegisterNameIdentifierResponse_relayState(swigCPtr);
56
 
    } 
57
 
  }
58
 
 
59
 
  public SamlpStatus status {
60
 
    set {
61
 
      lassoPINVOKE.set_LibRegisterNameIdentifierResponse_status(swigCPtr, SamlpStatus.getCPtr(value));
62
 
    } 
63
 
    get {
64
 
      IntPtr cPtr = lassoPINVOKE.get_LibRegisterNameIdentifierResponse_status(swigCPtr);
65
 
      return (cPtr == IntPtr.Zero) ? null : new SamlpStatus(cPtr, false);
66
 
    } 
67
 
  }
68
 
 
69
 
  public LibRegisterNameIdentifierResponse() : this(lassoPINVOKE.new_LibRegisterNameIdentifierResponse(), true) {
70
 
  }
71
 
 
72
 
  public static LibRegisterNameIdentifierResponse newFull(string providerID, string statusCodeValue, LibRegisterNameIdentifierRequest request, SWIGTYPE_p_LassoSignatureType sign_type, SignatureMethod sign_method) {
73
 
    IntPtr cPtr = lassoPINVOKE.LibRegisterNameIdentifierResponse_newFull(providerID, statusCodeValue, LibRegisterNameIdentifierRequest.getCPtr(request), SWIGTYPE_p_LassoSignatureType.getCPtr(sign_type), (int)sign_method);
74
 
    return (cPtr == IntPtr.Zero) ? null : new LibRegisterNameIdentifierResponse(cPtr, true);
75
 
  }
76
 
 
77
 
  public string dump() {
78
 
    return lassoPINVOKE.LibRegisterNameIdentifierResponse_dump(swigCPtr);
79
 
  }
80
 
 
81
 
}
82
 
 
83
 
}