System.Xml.XmlDictionary.Add C# (CSharp) Méthode

Add() public méthode

public Add ( string value ) : System.Xml.XmlDictionaryString
value string
Résultat System.Xml.XmlDictionaryString
        public virtual System.Xml.XmlDictionaryString Add(string value) { throw null; }
        public virtual bool TryLookup(int key, out System.Xml.XmlDictionaryString result) { throw null; }

Usage Example

		static SecureConversationVersion ()
		{
			var dic = new XmlDictionary ();
			WSSecureConversation13 = new SecureConversationVersionImpl () { Prefix = dic.Add ("wsse"), Namespace = dic.Add ("http://schemas.xmlsoap.org/ws/2002/12/secext") };
			WSSecureConversationFeb2005 = new SecureConversationVersionImpl () { Prefix = dic.Add ("wsse"), Namespace = dic.Add ("http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd") };
			Default = WSSecureConversation13;
		}
All Usage Examples Of System.Xml.XmlDictionary::Add