예제 #1
0
 private static MethodParameterBindings GetMethodParameterKind(CommonMethodMetadataReturnValue returnValue)
 {
     MethodParameterBindings bindings = 0;
     if (returnValue.CmdletOutputMetadata == null)
     {
         return bindings;
     }
     if (returnValue.CmdletOutputMetadata.ErrorCode == null)
     {
         return (bindings | MethodParameterBindings.Out);
     }
     return (bindings | MethodParameterBindings.Error);
 }
예제 #2
0
 private void Write23_Item(string n, string ns, CommonMethodMetadataReturnValue o, bool isNullable, bool needType)
 {
     if (o == null)
     {
         if (isNullable)
         {
             base.WriteNullTagLiteral(n, ns);
         }
     }
     else
     {
         if (!needType && !(o.GetType() == typeof(CommonMethodMetadataReturnValue)))
         {
             throw base.CreateUnknownTypeException(o);
         }
         base.WriteStartElement(n, ns, o, false, null);
         if (needType)
         {
             base.WriteXsiType(null, "http://schemas.microsoft.com/cmdlets-over-objects/2009/11");
         }
         this.Write2_TypeMetadata("Type", "http://schemas.microsoft.com/cmdlets-over-objects/2009/11", o.Type, false, false);
         this.Write22_CmdletOutputMetadata("CmdletOutputMetadata", "http://schemas.microsoft.com/cmdlets-over-objects/2009/11", o.CmdletOutputMetadata, false, false);
         base.WriteEndElement(o);
     }
 }
예제 #3
0
 private CommonMethodMetadataReturnValue Read45_Item(bool isNullable, bool checkType)
 {
     XmlQualifiedName type = checkType ? base.GetXsiType() : null;
     bool flag = false;
     if (isNullable)
     {
         flag = base.ReadNull();
     }
     if ((checkType && (type != null)) && ((type.Name != this.id31_Item) || (type.Namespace != this.id2_Item)))
     {
         throw base.CreateUnknownTypeException(type);
     }
     if (flag)
     {
         return null;
     }
     CommonMethodMetadataReturnValue o = new CommonMethodMetadataReturnValue();
     bool[] flagArray = new bool[2];
     while (base.Reader.MoveToNextAttribute())
     {
         if (!base.IsXmlnsAttribute(base.Reader.Name))
         {
             base.UnknownNode(o);
         }
     }
     base.Reader.MoveToElement();
     if (base.Reader.IsEmptyElement)
     {
         base.Reader.Skip();
         return o;
     }
     base.Reader.ReadStartElement();
     base.Reader.MoveToContent();
     int whileIterations = 0;
     int readerCount = base.ReaderCount;
     while ((base.Reader.NodeType != XmlNodeType.EndElement) && (base.Reader.NodeType != XmlNodeType.None))
     {
         if (base.Reader.NodeType == XmlNodeType.Element)
         {
             if ((!flagArray[0] && (base.Reader.LocalName == this.id89_Type)) && (base.Reader.NamespaceURI == this.id2_Item))
             {
                 o.Type = this.Read2_TypeMetadata(false, true);
                 flagArray[0] = true;
             }
             else if ((!flagArray[1] && (base.Reader.LocalName == this.id29_CmdletOutputMetadata)) && (base.Reader.NamespaceURI == this.id2_Item))
             {
                 o.CmdletOutputMetadata = this.Read22_CmdletOutputMetadata(false, true);
                 flagArray[1] = true;
             }
             else
             {
                 base.UnknownNode(o, "http://schemas.microsoft.com/cmdlets-over-objects/2009/11:Type, http://schemas.microsoft.com/cmdlets-over-objects/2009/11:CmdletOutputMetadata");
             }
         }
         else
         {
             base.UnknownNode(o, "http://schemas.microsoft.com/cmdlets-over-objects/2009/11:Type, http://schemas.microsoft.com/cmdlets-over-objects/2009/11:CmdletOutputMetadata");
         }
         base.Reader.MoveToContent();
         base.CheckReaderCount(ref whileIterations, ref readerCount);
     }
     base.ReadEndElement();
     return o;
 }
예제 #4
0
        private static MethodParameterBindings GetMethodParameterKind(CommonMethodMetadataReturnValue returnValue)
        {
            Dbg.Assert(returnValue != null, "Caller should verify returnValue != null");

            MethodParameterBindings bindings = 0;
            if (returnValue.CmdletOutputMetadata != null)
            {
                if (returnValue.CmdletOutputMetadata.ErrorCode == null)
                {
                    bindings |= MethodParameterBindings.Out;
                }
                else
                {
                    bindings |= MethodParameterBindings.Error;
                }
            }

            return bindings;
        }