6aba15269b0254c4e82be17af8327e8365cd6696
[mono.git] / mcs / class / Microsoft.Web.Services / Microsoft.Web.Services.Security / SMSecurity.cs
1 //
2 // SMSecurity.cs - SMSecurity abstract class
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 using System;
11
12 namespace Microsoft.Web.Services.Security {
13
14         public class SMSecurity : SMSecurityBase {
15
16                 public const string NamespaceURI = "http://schemas.xmlsoap.org/ws/2002/12/secext";
17                 public const string Prefix = "wsse";
18
19                 public SMSecurity () {}
20
21                 public override string NamespaceURIValue {
22                         get { return NamespaceURI; }
23                 }
24
25                 public override string PrefixValue {
26                         get { return Prefix; }
27                 }
28         }
29 }