**** Merged from MCS ****
[mono-project.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / SaML.cs
blobabde170f925bd69fc6d37246f7a7b7952c5b3d95
1 //
2 // SaML.cs - Security Assertion Markup Language
3 // http://www.oasis-open.org/committees/tc_home.php?wg_abbrev=security
4 //
5 // Author:
6 // Sebastien Pouliot (spouliot@motus.com)
7 //
8 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
9 //
11 using System;
13 namespace Microsoft.Web.Services.Security {
15 public class SaML {
17 public class ElementNames {
19 public const string Assertion = "Assertion";
20 public const string AssertionIDReference = "AssertionIDReference";
22 public ElementNames () {}
25 public const string NamespaceURI = "urn:oasis:names:tc:SAML:1.0:assertion";
26 public const string Prefix = "saml";
28 public SaML () {}