ServiceClientGenerator.ServiceModel.FindShape C# (CSharp) Method

FindShape() public method

Search the model for shape.
public FindShape ( string name ) : Shape
name string The name of the shape to search for
return Shape
        public Shape FindShape(string name)
        {
            var shapes = this.DocumentRoot[ShapesKey];
            var shape = shapes[name];
            return new Shape(this, name, shape);
        }