~ubuntu-branches/ubuntu/dapper/lasso/dapper

« back to all changes in this revision

Viewing changes to csharp/SamlNameIdentifier.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 SamlNameIdentifier : Node, IDisposable {
14
 
  internal SamlNameIdentifier(IntPtr cPtr, bool cMemoryOwn) {
15
 
    swigCMemOwn = cMemoryOwn;
16
 
    swigCPtr = cPtr;
17
 
  }
18
 
 
19
 
  protected static IntPtr getCPtr(SamlNameIdentifier obj) {
20
 
    return (obj == null) ? IntPtr.Zero : obj.swigCPtr;
21
 
  }
22
 
 
23
 
  ~SamlNameIdentifier() {
24
 
    Dispose();
25
 
  }
26
 
 
27
 
  public virtual void Dispose() {
28
 
  base.Dispose();
29
 
}
30
 
 
31
 
  public string content {
32
 
    set {
33
 
      lassoPINVOKE.set_SamlNameIdentifier_content(swigCPtr, value);
34
 
    } 
35
 
    get {
36
 
      return lassoPINVOKE.get_SamlNameIdentifier_content(swigCPtr);
37
 
    } 
38
 
  }
39
 
 
40
 
  public string format {
41
 
    set {
42
 
      lassoPINVOKE.set_SamlNameIdentifier_format(swigCPtr, value);
43
 
    } 
44
 
    get {
45
 
      return lassoPINVOKE.get_SamlNameIdentifier_format(swigCPtr);
46
 
    } 
47
 
  }
48
 
 
49
 
  public string nameQualifier {
50
 
    set {
51
 
      lassoPINVOKE.set_SamlNameIdentifier_nameQualifier(swigCPtr, value);
52
 
    } 
53
 
    get {
54
 
      return lassoPINVOKE.get_SamlNameIdentifier_nameQualifier(swigCPtr);
55
 
    } 
56
 
  }
57
 
 
58
 
  public SamlNameIdentifier() : this(lassoPINVOKE.new_SamlNameIdentifier(), true) {
59
 
  }
60
 
 
61
 
  public string dump() {
62
 
    return lassoPINVOKE.SamlNameIdentifier_dump(swigCPtr);
63
 
  }
64
 
 
65
 
}
66
 
 
67
 
}