public static bool ToShareSocketAllowed()

in src/main/csharp/Util/XMSConvert.cs [1097:1107]


		public static bool ToShareSocketAllowed(Int32 inputValue)
		{
			switch(inputValue)
			{
			case XMSC.WMQ_SHARE_CONV_ALLOWED_YES: return true;
			case XMSC.WMQ_SHARE_CONV_ALLOWED_NO : return false;
			default:
				ThrowCantConvertValueException(inputValue, "ShareSocketAllowed");
				return false;
			}
		}