Lines Matching refs:soapAction

399         public static void RegisterSoapActionForMethodBase(MethodBase mb, String soapAction)  in RegisterSoapActionForMethodBase()  argument
401 if (soapAction != null) in RegisterSoapActionForMethodBase()
403 _methodBaseToSoapAction[mb] = soapAction; in RegisterSoapActionForMethodBase()
406 ArrayList mbTable = (ArrayList)_soapActionToMethodBase[soapAction]; in RegisterSoapActionForMethodBase()
412 _soapActionToMethodBase[soapAction] = mbTable; in RegisterSoapActionForMethodBase()
424 String soapAction = (String)_methodBaseToSoapAction[mb]; in GetSoapActionFromMethodBase()
426 if (soapAction == null) in GetSoapActionFromMethodBase()
430 soapAction = attr.SoapAction; in GetSoapActionFromMethodBase()
433 return soapAction; in GetSoapActionFromMethodBase()
438 public static bool IsSoapActionValidForMethodBase(String soapAction, MethodBase mb) in IsSoapActionValidForMethodBase() argument
444 if ((soapAction[0] == '"') && (soapAction[soapAction.Length - 1] == '"')) in IsSoapActionValidForMethodBase()
445 soapAction = soapAction.Substring(1, soapAction.Length - 2); in IsSoapActionValidForMethodBase()
450 if (String.CompareOrdinal(attr.SoapAction, soapAction) == 0) in IsSoapActionValidForMethodBase()
457 if (String.CompareOrdinal(registeredSoapAction, soapAction) == 0) in IsSoapActionValidForMethodBase()
464 String[] parts = soapAction.Split(new char[1]{'#'}); in IsSoapActionValidForMethodBase()
499 public static bool GetTypeAndMethodNameFromSoapAction(String soapAction, in GetTypeAndMethodNameFromSoapAction() argument
504 if ((soapAction[0] == '"') && (soapAction[soapAction.Length - 1] == '"')) in GetTypeAndMethodNameFromSoapAction()
505 soapAction = soapAction.Substring(1, soapAction.Length - 2); in GetTypeAndMethodNameFromSoapAction()
507 ArrayList mbTable = (ArrayList)_soapActionToMethodBase[soapAction]; in GetTypeAndMethodNameFromSoapAction()
540 String[] parts = soapAction.Split(new char[1]{'#'}); in GetTypeAndMethodNameFromSoapAction()